From 472f3b38eb678416552913b9c58f246c722be973 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt Date: Thu, 24 Mar 2011 17:34:05 +0000 Subject: [PATCH] control-suite: Correct typo and error message Signed-off-by: Ansgar Burchardt --- dak/control_suite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dak/control_suite.py b/dak/control_suite.py index fa20100b..740b8836 100755 --- a/dak/control_suite.py +++ b/dak/control_suite.py @@ -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.") -- 2.39.2