[Python-checkins] python/dist/src/Tools/freeze checkextensions_win32.py, 1.7, 1.8

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sat Sep 20 07:05:04 EDT 2003


Update of /cvsroot/python/python/dist/src/Tools/freeze
In directory sc8-pr-cvs1:/tmp/cvs-serv20048

Modified Files:
	checkextensions_win32.py 
Log Message:
Patch #713645: Fix typo.


Index: checkextensions_win32.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/freeze/checkextensions_win32.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** checkextensions_win32.py	11 Sep 2002 20:36:00 -0000	1.7
--- checkextensions_win32.py	20 Sep 2003 11:05:01 -0000	1.8
***************
*** 60,64 ****
  	defaultMapName = os.path.join( os.path.split(sys.argv[0])[0], "extensions_win32.ini")
  	if not os.path.isfile(defaultMapName):
! 		sys.stderr.write("WARNING: %s can not be found - standard extensions may not be found" % mapFileName)
  	else:
  		# must go on end, so other inis can override.
--- 60,64 ----
  	defaultMapName = os.path.join( os.path.split(sys.argv[0])[0], "extensions_win32.ini")
  	if not os.path.isfile(defaultMapName):
! 		sys.stderr.write("WARNING: %s can not be found - standard extensions may not be found\n" % defaultMapName)
  	else:
  		# must go on end, so other inis can override.





More information about the Python-checkins mailing list