[PATCH] split on _ not - when deriving $releasever from productVersion

Adam Williamson awilliam at redhat.com
Wed Sep 10 21:30:39 UTC 2014


>From Fedora 21 Alpha TC6 on, the "Version" string in the
buildstamp (which is supplied by release engineering) uses _
not - to split release version, milestone and compose (e.g.
21_Alpha_TC6, not 20-Alpha-TC6 as it was previously).
---
 pyanaconda/packaging/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/packaging/__init__.py b/pyanaconda/packaging/__init__.py
index 18d6297..4b2bf6f 100644
--- a/pyanaconda/packaging/__init__.py
+++ b/pyanaconda/packaging/__init__.py
@@ -391,7 +391,7 @@ class Payload(object):
 
     def _getReleaseVersion(self, url):
         """ Return the release version of the tree at the specified URL. """
-        version = productVersion.split("-")[0]
+        version = productVersion.split("_")[0]
 
         log.debug("getting release version from tree at %s (%s)", url, version)
 
-- 
2.1.0



More information about the anaconda-patches mailing list