]> git.decadent.org.uk Git - dak.git/commitdiff
dak/process_new.py (is_source_in_queue_dir): access u instead of Upload
authorPhilipp Kern <pkern@debian.org>
Sat, 6 Sep 2008 11:35:42 +0000 (11:35 +0000)
committerPhilipp Kern <pkern@debian.org>
Sat, 6 Sep 2008 11:35:42 +0000 (11:35 +0000)
2008-09-06  Philipp Kern  <pkern@debian.org>

        * 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.

ChangeLog
dak/process_new.py

index ef17b0d4e06026caf7ba195677e252da7a4f6268..0f82968c6ec14f00594006b10080e585c76cd4d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-06  Philipp Kern  <pkern@debian.org>
+
+       * 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  <joerg@debian.org>
 
        * config/debian/pseudo-packages.description: Added debian-i18n and
index 6ac1d44dac7ee6242a9ea3219a0e69ad4c96377f..3dd93ada1a68ba480c2dcf6c6a9d186e09ef7da4 100755 (executable)
@@ -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"]: