Commit cdb51001 authored by Stefan H. Holek's avatar Stefan H. Holek

No need for repr as path is always str.

--HG--
branch : distribute
extra : rebase_source : 6784f7ac37d43a341bb8b2466fbf68a082af2bee
parent e0742352
......@@ -291,7 +291,7 @@ class FileList(_FileList):
if os.path.exists(path.encode('utf-8')):
self.files.append(path)
else:
log.warn("%r not %s encodable -- skipping", path,
log.warn("'%s' not %s encodable -- skipping", path,
sys.getfilesystemencoding())
else:
if os.path.exists(path):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment