[Secure-testing-commits] r31458 - lib/python

Florian Weimer fw at moszumanska.debian.org
Sat Jan 17 22:26:25 UTC 2015


Author: fw
Date: 2015-01-17 22:26:24 +0000 (Sat, 17 Jan 2015)
New Revision: 31458

Modified:
   lib/python/debian_support.py
Log:
debian_support.Release: Add "experimental" as a pseudo-release

At the start, to avoid issues with code assuming "sid" being last.


Modified: lib/python/debian_support.py
===================================================================
--- lib/python/debian_support.py	2015-01-17 22:04:01 UTC (rev 31457)
+++ lib/python/debian_support.py	2015-01-17 22:26:24 UTC (rev 31458)
@@ -193,7 +193,8 @@
 
 def listReleases():
     releases = {}
-    rels = ("potato", "woody", "sarge", "etch", "lenny", "squeeze", "wheezy", "jessie", "sid")
+    rels = ("experimental", # For use in [brackets] in the list files.
+            "potato", "woody", "sarge", "etch", "lenny", "squeeze", "wheezy", "jessie", "sid")
     for r in range(len(rels)):
         releases[rels[r]] = Release(rels[r], r)
     Release.releases = releases




More information about the Secure-testing-commits mailing list