From: Mark Hymers Date: Mon, 25 May 2009 17:31:34 +0000 (+0100) Subject: typo fix X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=c94572ee95a317ddf25fa0820d387625508acc14;hp=307823ca2367f65ccfbbc7c0bd5054f2883b9c9c;p=dak.git typo fix Signed-off-by: Mark Hymers --- diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 6aa89e12..bc13f684 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -1082,7 +1082,7 @@ def check_signed_by_key(): if highest_sid is None: reject("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % changes["source"]) else: - for sup in s.query(SrcUploader).join(DBSource).filter_by(source_id=highest_sid) + for sup in s.query(SrcUploader).join(DBSource).filter_by(source_id=highest_sid): (rfc822, rfc2047, name, email) = sup.maintainer.get_split_maintainer() if email == uid_email or name == uid_name: should_reject = False