From d0e96e22a1788a8a8fa149757213f5652f866cd6 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Sat, 3 May 2008 14:48:55 +0100 Subject: [PATCH] clean up pychecker warnings --- dak/control_overrides.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dak/control_overrides.py b/dak/control_overrides.py index 2b1c0e09..daf8d8e2 100644 --- a/dak/control_overrides.py +++ b/dak/control_overrides.py @@ -212,7 +212,7 @@ def process_file (file, suite, component, type, action): ################################################################################ -def list(suite, component, type): +def list_overrides(suite, component, type): suite_id = daklib.database.get_suite_id(suite) if suite_id == -1: daklib.utils.fubar("Suite '%s' not recognised." % (suite)) @@ -275,22 +275,22 @@ def main (): daklib.utils.fubar("Can not perform more than one action at once.") action = i - (suite, component, type) = (Cnf["Control-Overrides::Options::Suite"], - Cnf["Control-Overrides::Options::Component"], - Cnf["Control-Overrides::Options::Type"]) + (suite, component, otype) = (Cnf["Control-Overrides::Options::Suite"], + Cnf["Control-Overrides::Options::Component"], + Cnf["Control-Overrides::Options::Type"]) if action == "list": - list(suite, component, type) + list_overrides(suite, component, otype) else: if Cnf.has_key("Suite::%s::Untouchable" % suite) and Cnf["Suite::%s::Untouchable" % suite] != 0: daklib.utils.fubar("%s: suite is untouchable" % suite) Logger = daklib.logging.Logger(Cnf, "control-overrides") if file_list: - for file in file_list: - process_file(daklib.utils.open_file(file), suite, component, type, action) + for f in file_list: + process_file(daklib.utils.open_file(f), suite, component, otype, action) else: - process_file(sys.stdin, suite, component, type, action) + process_file(sys.stdin, suite, component, otype, action) Logger.close() ####################################################################################### -- 2.39.2