From 224634293910ce0cb4a6dd7865d4bc0ba70f5807 Mon Sep 17 00:00:00 2001 From: "Stefan H. Holek" Date: Sat, 10 Nov 2012 00:44:23 +0100 Subject: Encodability is irrelevant in FileList.append(). --HG-- branch : distribute extra : rebase_source : 9a89af6da8e816d0c978ee367699aca32611f3d2 --- setuptools/command/egg_info.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 098dfe84..3de3441c 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -287,8 +287,7 @@ class FileList(_FileList): elif path != manifest_maker.template: log.warn("%r not found -- skipping", path) except UnicodeEncodeError: - log.warn("%r not %s encodable -- skipping", path, - sys.getfilesystemencoding()) + self.files.append(path) -- cgit v1.2.3