diff options
author | Stefan H. Holek <stefan@epy.co.at> | 2012-11-13 14:01:29 +0100 |
---|---|---|
committer | Stefan H. Holek <stefan@epy.co.at> | 2012-11-13 14:01:29 +0100 |
commit | 12599860ec654a39179704ce02323718c987114c (patch) | |
tree | e3a3365c00aa4f5f547de6fad417dbcd37947236 /setuptools/command/egg_info.py | |
parent | cdb51001a8302e2948a42c68654550be1e2f941d (diff) | |
download | external_python_setuptools-12599860ec654a39179704ce02323718c987114c.tar.gz external_python_setuptools-12599860ec654a39179704ce02323718c987114c.tar.bz2 external_python_setuptools-12599860ec654a39179704ce02323718c987114c.zip |
Don't claim support for LANG=C.
--HG--
branch : distribute
extra : rebase_source : a366e936bfbce0c92831114e92a9d2c015841b5d
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 6145d6ea..0c2ea0cc 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -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: |