From: Joerg Jaspert Date: Sat, 6 Sep 2008 11:38:41 +0000 (+0200) Subject: Merge commit 'pkern/p-u-new' into merge X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=65d232b9594b91d4381d7daf1f1d16684ea03cb6;hp=451d45600aba31e02368360afc8c1fb3a1f8427b;p=dak.git Merge commit 'pkern/p-u-new' into merge * commit 'pkern/p-u-new': dak/process_new.py (is_source_in_queue_dir): access u instead of Upload Signed-off-by: Joerg Jaspert --- diff --git a/ChangeLog b/ChangeLog index ef17b0d4..0f82968c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-06 Philipp Kern + + * dak/process_new.py (is_source_in_queue_dir): Access the right + variable to check if the given entry in the queue is the sourceful + upload we are looking for. + 2008-09-02 Joerg Jaspert * config/debian/pseudo-packages.description: Added debian-i18n and diff --git a/dak/process_new.py b/dak/process_new.py index 6ac1d44d..3dd93ada 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -822,7 +822,7 @@ def is_source_in_queue_dir(qdir): u = queue.Upload(Cnf) u.pkg.changes_file = os.path.join(qdir, entry) u.update_vars() - if not Upload.pkg.changes["architecture"].has_key("source"): + if not u.pkg.changes["architecture"].has_key("source"): # another binary upload, ignore continue if Upload.pkg.changes["version"] != u.pkg.changes["version"]: