Unverified Commit 3b43cc01 authored by Patrick Devine's avatar Patrick Devine Committed by GitHub
Browse files

fix extended tag names (#171)

parent b8421dce
...@@ -45,7 +45,7 @@ func ParseModelPath(name string) ModelPath { ...@@ -45,7 +45,7 @@ func ParseModelPath(name string) ModelPath {
return ModelPath{} return ModelPath{}
} }
colonParts := strings.Split(name, ":") colonParts := strings.Split(slashParts[len(slashParts)-1], ":")
if len(colonParts) == 2 { if len(colonParts) == 2 {
tag = colonParts[1] tag = colonParts[1]
} else { } else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment