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

jvr@users.sourceforge.net jvr@users.sourceforge.net
Mon, 13 Jan 2003 15:30:13 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1:/tmp/cvs-serv20096

Modified Files:
	bundlebuilder.py 
Log Message:
make sure Info.plist has a CFBundleIdentifier entry

Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/bundlebuilder.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** bundlebuilder.py	2 Jan 2003 13:13:01 -0000	1.2
--- bundlebuilder.py	13 Jan 2003 23:30:04 -0000	1.3
***************
*** 128,131 ****
--- 128,133 ----
  				self.creator = "????"
  		plist.CFBundleSignature = self.creator
+ 		if not hasattr(plist, "CFBundleIdentifier"):
+ 			plist.CFBundleIdentifier = self.name
  
  	def build(self):