[dak/master] Fixes
Signed-off-by: Joerg Jaspert <joerg@debian.org>
---
dak/process_new.py | 2 +-
dak/queue_report.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dak/process_new.py b/dak/process_new.py
index a4cb017..7a7b6fd 100755
--- a/dak/process_new.py
+++ b/dak/process_new.py
@@ -220,7 +220,7 @@ def sort_changes(changes_files):
mtime = os.stat(d["filename"])[stat.ST_MTIME]
if mtime < oldest:
oldest = mtime
- have_note += (database.has_new_comment(d["source"], d["version"])
+ have_note += (database.has_new_comment(d["source"], d["version"]))
per_source[source]["oldest"] = oldest
if not have_note:
per_source[source]["note_state"] = 0; # none
diff --git a/dak/queue_report.py b/dak/queue_report.py
index 341e0ff..a4bcea0 100755
--- a/dak/queue_report.py
+++ b/dak/queue_report.py
@@ -329,7 +329,7 @@ def process_changes_files(changes_files, type, log):
else:
if mtime < oldest:
oldest = mtime
- have_note += (database.has_new_comment(d["source"], d["version"])
+ have_note += (database.has_new_comment(d["source"], d["version"]))
per_source[source]["oldest"] = oldest
if not have_note:
per_source[source]["note_state"] = 0; # none
--
1.5.6.5
Reply to: