]> git.decadent.org.uk Git - dak.git/commitdiff
determine_new: Really make `new' an empty dict
authorAnsgar Burchardt <ansgar@debian.org>
Fri, 25 Mar 2011 13:27:36 +0000 (13:27 +0000)
committerAnsgar Burchardt <ansgar@debian.org>
Fri, 25 Mar 2011 13:27:36 +0000 (13:27 +0000)
Signed-off-by: Ansgar Burchardt <ansgar@debian.org>
daklib/queue.py

index 0e34fece7822605f5d66dbf873a407c4ff2b2cc3..86e768b366ab6548ba04c30df6d5383a3848748e 100755 (executable)
@@ -102,7 +102,7 @@ def get_type(f, session):
 
 # Determine what parts in a .changes are NEW
 
-def determine_new(filename, changes, files, warn=1, session = None, dsc = None, new = {}):
+def determine_new(filename, changes, files, warn=1, session = None, dsc = None, new = None):
     """
     Determine what parts in a C{changes} file are NEW.
 
@@ -131,6 +131,8 @@ def determine_new(filename, changes, files, warn=1, session = None, dsc = None,
     # TODO: This should all use the database instead of parsing the changes
     # file again
     byhand = {}
+    if new is None:
+        new = {}
 
     dbchg = get_dbchange(filename, session)
     if dbchg is None: