Skip to content

Commit 49dd16e

Browse files
author
Richard Jones
committed
"nicer" messages
1 parent 007b38f commit 49dd16e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.77.2.1 2005-01-03 03:17:48 richard Exp $
19+
# $Id: setup.py,v 1.77.2.2 2005-02-15 23:04:32 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -209,7 +209,7 @@ def check_manifest():
209209
try:
210210
f = open('MANIFEST')
211211
except:
212-
print '\n*** SOURCE ERROR: The MANIFEST file is missing!'
212+
print '\n*** SOURCE WARNING: The MANIFEST file is missing!'
213213
return
214214
try:
215215
manifest = [l.strip() for l in f.readlines()]
@@ -218,7 +218,7 @@ def check_manifest():
218218
err = [line for line in manifest if not os.path.exists(line)]
219219
if err:
220220
n = len(manifest)
221-
print '\n*** SOURCE ERROR: There are files missing (%d/%d found)!'%(
221+
print '\n*** SOURCE WARNING: There are files missing (%d/%d found)!'%(
222222
n-len(err), n)
223223
print 'Missing:', '\nMissing: '.join(err)
224224

0 commit comments

Comments
 (0)