[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] pass session to get_id



Signed-off-by: Mark Hymers <mhy@debian.org>
---
 dak/control_suite.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dak/control_suite.py b/dak/control_suite.py
index a2cb9f3..1d5eb7a 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
 
-- 
1.5.6.5


Reply to: