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

Don't claim support for LANG=C.

--HG--
branch : distribute
extra : rebase_source : a366e936bfbce0c92831114e92a9d2c015841b5d
parent cdb51001
......@@ -287,7 +287,7 @@ class FileList(_FileList):
if os.path.exists(path) or os.path.exists(path.encode('utf-8')):
self.files.append(path)
except UnicodeEncodeError:
# Support UTF-8 filenames even if LANG=C
# Accept UTF-8 filenames even if LANG=C
if os.path.exists(path.encode('utf-8')):
self.files.append(path)
else:
......
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