commit beb5b931f58125745cb9a5ade741f748a4ba11c6 Author: Pierre-Yves Chibon pingou@pingoured.fr Date: Mon Nov 24 11:24:26 2014 +0100
Inform the user if an email address does not correspond to a FAS user
pkgdb2client/utils.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) --- diff --git a/pkgdb2client/utils.py b/pkgdb2client/utils.py index 9947796..3c7ee00 100644 --- a/pkgdb2client/utils.py +++ b/pkgdb2client/utils.py @@ -117,6 +117,8 @@ def __get_fas_user_by_email(email_address): user = None if userid: user = FASCLIENT.person_by_id(userid) + else: + LOG.info('No user id found in FAS for email %s', email_address)
return user
packagedb-cli-commits@lists.stg.fedorahosted.org