Skip to content

Commit

Permalink
fix logging typo
Browse files Browse the repository at this point in the history
Change-Id: I6c88350af0e7bd96ed2f72883e1198e3ac7e7f78
  • Loading branch information
wleese committed Feb 2, 2017
1 parent 87ad08f commit d3da47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collectors/elasticsearch/elasticsearch.py
Expand Up @@ -108,7 +108,7 @@ def _get(self, scheme, host, port, path, assert_key=None):
try:
response = urllib2.urlopen(url)
except Exception, err:
self.log.error("%s: %s", url, err)
self.log.error("%s: %s" % (url, err))
return False

try:
Expand Down

0 comments on commit d3da47d

Please sign in to comment.