[Collab-qa-commits] r1336 - udd/udd

lucas at alioth.debian.org lucas at alioth.debian.org
Thu Oct 23 16:23:32 UTC 2008


Author: lucas
Date: 2008-10-23 16:23:32 +0000 (Thu, 23 Oct 2008)
New Revision: 1336

Modified:
   udd/udd/packages_gatherer.py
Log:
fix bug with quoting of source package name when the source version differs from the binary version

Modified: udd/udd/packages_gatherer.py
===================================================================
--- udd/udd/packages_gatherer.py	2008-10-22 19:44:01 UTC (rev 1335)
+++ udd/udd/packages_gatherer.py	2008-10-23 16:23:32 UTC (rev 1336)
@@ -105,8 +105,8 @@
 	if len(split) == 1:
 	  d['Source_Version'] = d['Version']
 	else:
-	  d['Source'] = aux.quote(split[0])
-	  d['Source_Version'] = aux.quote(split[1].strip("()"))
+	  d['Source'] = split[0]
+	  d['Source_Version'] = split[1].strip("()")
 
       query = """EXECUTE package_insert
 	  (%(Package)s, %(Version)s, %(Architecture)s, %(Maintainer)s,




More information about the Collab-qa-commits mailing list