diff options
author | Stefan H. Holek <stefan@epy.co.at> | 2012-11-10 18:45:20 +0100 |
---|---|---|
committer | Stefan H. Holek <stefan@epy.co.at> | 2012-11-10 18:45:20 +0100 |
commit | 91379d9c17d2ac432f64e1952e2b3d47c83eedcc (patch) | |
tree | c886f379940f3af023036534f46ff76c7d80f96d /setuptools/command/egg_info.py | |
parent | b7c5bd34a32f20e54100fd88ede20c136571b1cf (diff) | |
download | external_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.tar.gz external_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.tar.bz2 external_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.zip |
Add comments.
--HG--
branch : distribute
extra : rebase_source : 2d4ac9964b247122715c8296158c97d1f11adf89
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 9695627b..d37ba900 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -286,6 +286,7 @@ class FileList(_FileList): if os.path.exists(path): self.files.append(path) elif sys.platform == 'win32': + # NTFS can store UTF-8 filenames as is if os.path.exists(path.encode('utf-8')): self.files.append(path) except UnicodeEncodeError: |