[Python-checkins] python/dist/src/Mac/Lib bundlebuilder.py,1.2,1.3

jvr@users.sourceforge.net jvr@users.sourceforge.net
Thu, 21 Nov 2002 16:08:50 -0800


Update of /cvsroot/python/python/dist/src/Mac/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv18795

Modified Files:
	bundlebuilder.py 
Log Message:
fixed stupid bug

Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/bundlebuilder.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** bundlebuilder.py	21 Nov 2002 23:19:37 -0000	1.2
--- bundlebuilder.py	22 Nov 2002 00:08:47 -0000	1.3
***************
*** 238,242 ****
  		if self.name[-4:] != ".app":
  			self.name += ".app"
- 		self.plist.CFBundleExecutable = self.name
  
  		if self.nibname:
--- 238,241 ----
***************
*** 248,251 ****
--- 247,251 ----
  
  	def preProcess(self):
+ 		self.plist.CFBundleExecutable = self.name
  		resdir = pathjoin("Contents", "Resources")
  		if self.executable is not None: