From 6e479a6a052e9df1549948b7b6cee45cea814a8d Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Fri, 22 Nov 2019 12:13:41 +0100 Subject: [PATCH] apply email overrides map to BZ emails fixes: #12 Signed-off-by: Nils Philippsen --- distgit_bugzilla_sync/script.py | 1 + 1 file changed, 1 insertion(+) diff --git a/distgit_bugzilla_sync/script.py b/distgit_bugzilla_sync/script.py index 97b2718..8dce05e 100644 --- a/distgit_bugzilla_sync/script.py +++ b/distgit_bugzilla_sync/script.py @@ -221,6 +221,7 @@ class BugzillaProxy: self.user_cache[username] = {'bugzilla_email': bz_email} bz_email = bz_email.lower() self.inverted_user_cache[bz_email] = username + bz_email = email_overrides.get(bz_email, bz_email) return bz_email def add_edit_component(self, package, collection, owner, description=None,