Update of /cvsroot/python/python/dist/src/Tools/freeze In directory sc8-pr-cvs1:/tmp/cvs-serv19952/Tools/freeze Modified Files: Tag: release23-maint 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.7.14.1 diff -C2 -d -r1.7 -r1.7.14.1 *** checkextensions_win32.py 11 Sep 2002 20:36:00 -0000 1.7 --- checkextensions_win32.py 20 Sep 2003 11:04:44 -0000 1.7.14.1 *************** *** 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.