File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
2121from distutils .core import setup , Extension
2222from 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:' , '\n Missing: ' .join (err )
224224
You can’t perform that action at this time.
0 commit comments