X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Ftransitions.py;h=f329277a719db02944a9141d8fc662426a5a990a;hb=ee7c1655c1d33b450d44c70e2b61cb420be9078e;hp=808831b1cd49f66dbc67de49babc5532400256bf;hpb=96dc94f0c4c645e26b545bc724075063da28c006;p=dak.git diff --git a/dak/transitions.py b/dak/transitions.py index 808831b1..f329277a 100755 --- a/dak/transitions.py +++ b/dak/transitions.py @@ -511,7 +511,7 @@ New Version: %s Responsible: %s Description: %s Blocked Packages (total: %d): %s -""" % (trans, source, expected, rm, reason, len(packages), ", ".join(packages)) +""" % (trans, source.package, expected, rm, reason, len(packages), ", ".join(packages)) ################################################################################ @@ -532,25 +532,24 @@ def transition_info(transitions): source = t["source"] expected = t["new"] - # Will be empty list if nothing is in testing. - sources = get_source_in_suite(source, "testing", session) + # Will be None if nothing is in testing. + source = get_source_in_suite(source, "testing", session) print get_info(trans, source, expected, t["rm"], t["reason"], t["packages"]) - if len(sources) < 1: + if source is None: # No package in testing print "Transition source %s not in testing, transition still ongoing." % (source) else: - current = sources[0].version - compare = apt_pkg.VersionCompare(current, expected) + compare = apt_pkg.VersionCompare(source.version, expected) print "Apt compare says: %s" % (compare) if compare < 0: # This is still valid, the current version in database is older than # the new version we wait for - print "This transition is still ongoing, we currently have version %s" % (current) + print "This transition is still ongoing, we currently have version %s" % (source.version) else: print "This transition is over, the target package reached testing, should be removed" - print "%s wanted version: %s, has %s" % (source, expected, current) + print "%s wanted version: %s, has %s" % (source, expected, source.version) print "-------------------------------------------------------------------------" ################################################################################