Merge "swift-account-audit: clean up some error formatting"

This commit is contained in:
Zuul 2019-10-16 04:03:02 +00:00 committed by Gerrit Code Review
commit f4fc811862
1 changed files with 2 additions and 2 deletions

View File

@ -252,14 +252,14 @@ class Auditor(object):
self.account_not_found += 1
consistent = False
print(" Bad status GETting account '%s' "
" from %ss:%ss" %
" from %s:%s" %
(account, node['ip'], node['device']))
break
results = json.loads(resp.read())
except Exception:
self.account_exceptions += 1
consistent = False
print(" Exception GETting account '%s' on %ss:%ss" %
print(" Exception GETting account '%s' on %s:%s" %
(account, node['ip'], node['device']))
break
if node_id not in responses: