From 9e8df5236341e8c3ebd39088b6a4a3f48bb73653 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Mon, 21 Apr 2008 23:21:37 +0200 Subject: [PATCH] Correct place for braces makes it actually work --- dak/process_accepted.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dak/process_accepted.py b/dak/process_accepted.py index 225f7bb0..90edaf55 100755 --- a/dak/process_accepted.py +++ b/dak/process_accepted.py @@ -321,7 +321,7 @@ def install (): added_ids = {} for u in uploader_ids: if added_ids.has_key(u): - daklib.utils.warn("Already saw uploader %s for source %s") % (u, package) + daklib.utils.warn("Already saw uploader %s for source %s" % (u, package)) continue added_ids[u]=1 projectB.query("INSERT INTO src_uploaders (source, maintainer) VALUES (currval('source_id_seq'), %d)" % (u)) -- 2.39.2