From: Thomas Viehmann Date: Thu, 24 Apr 2008 21:49:30 +0000 (+0000) Subject: only consider sourceful uploads for sponsor notification X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=7ca4fe7e35fd9927bdbac185fe7a36d3d5f6b464;p=dak.git only consider sourceful uploads for sponsor notification --- diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 82133068..6e62c431 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -1072,7 +1072,8 @@ def check_signed_by_key(): if uid_name == "": sponsored = 1 else: sponsored = 1 - if daklib.utils.is_email_alias(uid_email): + if ("source" not in changes["architecture"] and + daklib.utils.is_email_alias(uid_email)): sponsor_addresses = daklib.utils.gpg_get_key_addresses(changes["fingerprint"]) if (changes["maintaineremail"] not in sponsor_addresses and changes["changedbyemail"] not in sponsor_addresses):