[Python-checkins] python/dist/src/Mac/scripts BuildApplication.py, 1.10, 1.10.12.1

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Tue Jan 4 16:25:50 CET 2005


Update of /cvsroot/python/python/dist/src/Mac/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3954

Modified Files:
      Tag: release23-maint
	BuildApplication.py 
Log Message:
Fix for #1076490 submitted by Neil Mayhew: a serious typo means
BuildApplication has never worked in 2.3. I guess that shows how
popular MacOS9 is:-)


Index: BuildApplication.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/Attic/BuildApplication.py,v
retrieving revision 1.10
retrieving revision 1.10.12.1
diff -u -d -r1.10 -r1.10.12.1
--- BuildApplication.py	22 Jan 2003 14:03:11 -0000	1.10
+++ BuildApplication.py	4 Jan 2005 15:25:48 -0000	1.10.12.1
@@ -72,7 +72,7 @@
 	else:
 		tf = tf + '.app'
 	
-	dstfilename = EasyDialogs.AskFileForSate(message='Save application as:', 
+	dstfilename = EasyDialogs.AskFileForSave(message='Save application as:', 
 		savedFileName=tf)
 	if not ok:
 		return



More information about the Python-checkins mailing list