diff options
author | Stefan H. Holek <stefan@epy.co.at> | 2012-11-05 11:44:41 +0100 |
---|---|---|
committer | Stefan H. Holek <stefan@epy.co.at> | 2012-11-05 11:44:41 +0100 |
commit | 924d4355aeacd172c32ce6a894f3c141bc363991 (patch) | |
tree | 1ea5bd3a313247db8b1db8d2f610f90b69136cc9 /setuptools/command/egg_info.py | |
parent | 1705c6217d403007ff3c225747c0fde169532199 (diff) | |
download | external_python_setuptools-924d4355aeacd172c32ce6a894f3c141bc363991.tar.gz external_python_setuptools-924d4355aeacd172c32ce6a894f3c141bc363991.tar.bz2 external_python_setuptools-924d4355aeacd172c32ce6a894f3c141bc363991.zip |
Don't warn about a missing MANIFEST.in.
--HG--
branch : distribute
extra : rebase_source : 219c8a4e10da4a319a736c728d162528220d36e1
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 cf6ef63c..098dfe84 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -284,7 +284,7 @@ class FileList(_FileList): try: if os.path.exists(path): self.files.append(path) - else: + elif path != manifest_maker.template: log.warn("%r not found -- skipping", path) except UnicodeEncodeError: log.warn("%r not %s encodable -- skipping", path, |