commit 3f4bd28ebf5016b39d3637e11d417be18602b8ca Author: Pierre-Yves Chibon pingou@pingoured.fr Date: Fri Jun 27 09:53:05 2014 +0200
Update the log.debug to use {} and .format() as elsewhere
pkgdb2client.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/pkgdb2client.py b/pkgdb2client.py index 5957d2a..45228eb 100644 --- a/pkgdb2client.py +++ b/pkgdb2client.py @@ -341,7 +341,7 @@ class PkgDB(object): LOG.debug(response.text)
if response.status_code != 200: - LOG.debug('full output %s', output) + LOG.debug('full output: {0}'.format(output)) raise PkgDBException(output['error'])
return output
packagedb-cli-commits@lists.stg.fedorahosted.org