From 50f8efa1d06c180dcf6edbaa6ea02a24d99a5100 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Mon, 26 Oct 2009 10:40:55 +0000 Subject: [PATCH] pass session to get_id Signed-off-by: Mark Hymers --- dak/control_suite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dak/control_suite.py b/dak/control_suite.py index a2cb9f37..1d5eb7ac 100755 --- a/dak/control_suite.py +++ b/dak/control_suite.py @@ -142,7 +142,7 @@ def set_suite(file, suite, session): for key in desired.keys(): if not current.has_key(key): (package, version, architecture) = key.split() - pkid = get_id (package, version, architecture) + pkid = get_id (package, version, architecture, session) if not pkid: continue if architecture == "source": @@ -175,7 +175,7 @@ def process_file(file, suite, action, session): (package, version, architecture) = split_line - pkid = get_id(package, version, architecture) + pkid = get_id(package, version, architecture, session) if not pkid: continue -- 2.39.2