summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorStefan H. Holek <stefan@epy.co.at>2012-11-05 11:44:41 +0100
committerStefan H. Holek <stefan@epy.co.at>2012-11-05 11:44:41 +0100
commit18d30afe3ef79f4bee4048522b1b371cc984d039 (patch)
tree164e2e2480144e5d1111f9b272ef728302c0ae36 /setuptools/command
parentf790ece00c0224c68fee10266497532a8c0c5d78 (diff)
downloadpython-setuptools-bitbucket-18d30afe3ef79f4bee4048522b1b371cc984d039.tar.gz
Don't warn about a missing MANIFEST.in.
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
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,