Browse Source

Fix image tag to rpm version filter.

Devan Goodwin 8 years ago
parent
commit
bab4a4b6ae
1 changed files with 2 additions and 3 deletions
  1. 2 3
      filter_plugins/oo_filters.py

+ 2 - 3
filter_plugins/oo_filters.py

@@ -881,13 +881,12 @@ class FilterModule(object):
         """
         if not isinstance(version, basestring):
             raise errors.AnsibleFilterError("|failed expects a string or unicode")
-        # TODO: Do we need to make this actually convert v1.2.0-rc1 into 1.2.0-0.rc1
-        # We'd need to be really strict about how we build the RPM Version+Release
         if version.startswith("v"):
             version = version[1:]
+            # Strip release from requested version, we no longer support this.
             version = version.split('-')[0]
 
-        if include_dash and not version.startswith("-"):
+        if include_dash and version and not version.startswith("-"):
             version = "-" + version
 
         return version