From: Joerg Jaspert Date: Mon, 26 Oct 2009 18:18:46 +0000 (+0100) Subject: Merge commit 'mhy/master' into merge X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=0b7a883287f980e1d44e6d4fbf6050d85d1e4963;hp=b8657d55fc4870acbcd1684e767e2290f1b5b77e;p=dak.git Merge commit 'mhy/master' into merge * commit 'mhy/master': try fixing up this *again* Signed-off-by: Joerg Jaspert --- diff --git a/dak/transitions.py b/dak/transitions.py index 9aaed624..a208a402 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.source, expected, rm, reason, len(packages), ", ".join(packages)) +""" % (trans, source, expected, rm, reason, len(packages), ", ".join(packages)) ################################################################################ @@ -533,23 +533,23 @@ def transition_info(transitions): expected = t["new"] # Will be None if nothing is in testing. - source = get_source_in_suite(source, "testing", session) + sourceobj = get_source_in_suite(source, "testing", session) print get_info(trans, source, expected, t["rm"], t["reason"], t["packages"]) - if source is None: + if sourceobj is None: # No package in testing print "Transition source %s not in testing, transition still ongoing." % (source) else: - compare = apt_pkg.VersionCompare(source.version, expected) + compare = apt_pkg.VersionCompare(sourceobj.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" % (source.version) + print "This transition is still ongoing, we currently have version %s" % (sourceobj.version) else: print "This transition is over, the target package reached testing, should be removed" - print "%s wanted version: %s, has %s" % (source.source, expected, source.version) + print "%s wanted version: %s, has %s" % (source, expected, sourceobj.version) print "-------------------------------------------------------------------------" ################################################################################