From: Joerg Jaspert Date: Mon, 21 Apr 2008 21:21:37 +0000 (+0200) Subject: Correct place for braces makes it actually work X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=9e8df5236341e8c3ebd39088b6a4a3f48bb73653;hp=e053517df19b0321e17a33139bbd8ec543ad3216;p=dak.git Correct place for braces makes it actually work --- 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))