issue #349: master: fix broken importer logging format string

This commit is contained in:
David Wilson 2018-08-24 16:42:54 +01:00
parent 8ab11f415f
commit 946c4964bb
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ class ModuleFinder(object):
# requests.packages.urllib3.contrib.pyopenssl"
e = sys.exc_info()[1]
LOG.debug('%r: loading %r using %r failed: %s',
self, fullname, loader)
self, fullname, loader, e)
return
if path is None or source is None: