From: Martin v. Löwis Date: Sat, 20 Sep 2003 11:04:44 +0000 (+0000) Subject: Patch #713645: Fix typo. X-Git-Tag: v2.3.1~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=220e199dab948d12c09a96a2d397bc0e674fa195;p=thirdparty%2FPython%2Fcpython.git Patch #713645: Fix typo. --- diff --git a/Misc/NEWS b/Misc/NEWS index 5c0e143c62ff..28750d5484c3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -126,6 +126,8 @@ IDLE Tools/Demos ----------- +- Patch #713645: Fix typo in checkextensions_win32. + - Pynche was fixed to not crash when there is no ~/.pynche file and no -d option was given. diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py index 669a1429464f..9a7a6dccec64 100644 --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -59,7 +59,7 @@ def checkextensions(unknown, extra_inis, prefix): 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) + 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. extra_inis.append(defaultMapName)