]> git.decadent.org.uk Git - dak.git/commitdiff
control-suite: Correct typo and error message
authorAnsgar Burchardt <ansgar@debian.org>
Thu, 24 Mar 2011 17:34:05 +0000 (17:34 +0000)
committerAnsgar Burchardt <ansgar@debian.org>
Thu, 24 Mar 2011 17:34:28 +0000 (17:34 +0000)
Signed-off-by: Ansgar Burchardt <ansgar@debian.org>
dak/control_suite.py

index fa20100b40a69167f173dd8657c954dd40d84240..740b88365d6b630580f6c0904f6560b52c7a0139 100755 (executable)
@@ -179,14 +179,14 @@ def version_checks(package, architecture, target_suite, new_version, session, fo
     for suite, version in suite_version_list:
         cmp = apt_pkg.VersionCompare(new_version, version)
         if suite in must_be_newer_than and cmp < 1:
-            utils.warn("%s (%s): version check violated: %s in %s is *not* newer than %s targeted at %s" % (package, architecture, version, suite, new_version, target_suite))
+            utils.warn("%s (%s): version check violated: %s targeted at %s is *not* newer than %s in %s" % (package, architecture, new_version, target_suite, version, suite))
             violations = True
         if suite in must_be_older_than and cmp > 1:
-            utils.warn("%s (%s): version check violated: %s in %s is *not* older than %s targeted at %s" % (package, architecture, version, suite, new_version, target_suite))
+            utils.warn("%s (%s): version check violated: %s targeted at %s is *not* older than %s in %s" % (package, architecture, new_version, target_suite, version, suite))
             violations = True
 
     if violations:
-        if forced:
+        if force:
             utils.warn("Continuing anyway (forced)...")
         else:
             utils.fubar("Aborting. Version checks violated and not forced.")