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

jvr@users.sourceforge.net jvr@users.sourceforge.net
Thu, 21 Nov 2002 16:31:52 -0800


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

Modified Files:
	bundlebuilder.py 
Log Message:
fixed error in cmd line doc; moved funny self.name line once more

Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/bundlebuilder.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** bundlebuilder.py	22 Nov 2002 00:08:47 -0000	1.3
--- bundlebuilder.py	22 Nov 2002 00:31:50 -0000	1.4
***************
*** 246,251 ****
  		BundleBuilder.setup(self)
  
- 	def preProcess(self):
  		self.plist.CFBundleExecutable = self.name
  		resdir = pathjoin("Contents", "Resources")
  		if self.executable is not None:
--- 246,252 ----
  		BundleBuilder.setup(self)
  
  		self.plist.CFBundleExecutable = self.name
+ 
+ 	def preProcess(self):
  		resdir = pathjoin("Contents", "Resources")
  		if self.executable is not None:
***************
*** 312,316 ****
  cmdline_doc = """\
  Usage:
!   python [options] command
    python mybuildscript.py [options] command
  
--- 313,317 ----
  cmdline_doc = """\
  Usage:
!   python bundlebuilder.py [options] command
    python mybuildscript.py [options] command