commit d202d1d01a4b3dffeea3c9a4c0502cf30765f440 Author: Pierre-Yves Chibon pingou@pingoured.fr Date: Fri Jun 27 09:25:16 2014 +0200
A little more debugging upon exception when logging in
pkgdb2client.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) --- diff --git a/pkgdb2client.py b/pkgdb2client.py index af1d68f..b378ef9 100644 --- a/pkgdb2client.py +++ b/pkgdb2client.py @@ -306,7 +306,8 @@ class PkgDB(object): response=response) success = True break - except PkgDBException: + except PkgDBException as err: + log.debug('Exception: {0}'.format(err)) response = None bad_password = True if not success:
packagedb-cli-commits@lists.stg.fedorahosted.org