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 | 18d30afe3ef79f4bee4048522b1b371cc984d039 (patch) | |
| tree | 164e2e2480144e5d1111f9b272ef728302c0ae36 /setuptools/command | |
| parent | f790ece00c0224c68fee10266497532a8c0c5d78 (diff) | |
| download | python-setuptools-bitbucket-18d30afe3ef79f4bee4048522b1b371cc984d039.tar.gz | |
Don't warn about a missing MANIFEST.in.
Diffstat (limited to 'setuptools/command')
| -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, |
