[Blends-commit] r3606 - /blends/trunk/team_analysis_tools/count-dependencies.py

tille at users.alioth.debian.org tille at users.alioth.debian.org
Thu Oct 25 06:38:52 UTC 2012


Author: tille
Date: Thu Oct 25 06:38:51 2012
New Revision: 3606

URL: http://svn.debian.org/wsvn/blends/?sc=1&rev=3606
Log:
Reproducible results due to sorting

Modified:
    blends/trunk/team_analysis_tools/count-dependencies.py

Modified: blends/trunk/team_analysis_tools/count-dependencies.py
URL: http://svn.debian.org/wsvn/blends/blends/trunk/team_analysis_tools/count-dependencies.py?rev=3606&op=diff
==============================================================================
--- blends/trunk/team_analysis_tools/count-dependencies.py (original)
+++ blends/trunk/team_analysis_tools/count-dependencies.py Thu Oct 25 06:38:51 2012
@@ -45,7 +45,7 @@
 
     def __str__(self):
 	s="Version: %s; Date: %s-%02i-%02i:" % (self.version, self.year, int(self.month), int(self.day))
-	for r in self.recommends.keys():
+	for r in sorted(self.recommends.keys()):
 	    s += '\n  ' + r + ': ' + str(len(self.recommends[r]))
 	return s
 




More information about the Blends-commit mailing list