diff options
author | Just van Rossum <just@letterror.com> | 2002-11-22 00:31:50 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-11-22 00:31:50 (GMT) |
commit | f7aba23644d76d85815d053964dba90c63d1c811 (patch) | |
tree | 2ade4e19c6500813d67d07f16d834b9a91e95e8e /Mac | |
parent | 7fd69ad2f11c945cbe362cee4e262cec239d9f6c (diff) | |
download | cpython-f7aba23644d76d85815d053964dba90c63d1c811.zip cpython-f7aba23644d76d85815d053964dba90c63d1c811.tar.gz cpython-f7aba23644d76d85815d053964dba90c63d1c811.tar.bz2 |
fixed error in cmd line doc; moved funny self.name line once more
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/Lib/bundlebuilder.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mac/Lib/bundlebuilder.py b/Mac/Lib/bundlebuilder.py index 0575a46..7854770 100755 --- a/Mac/Lib/bundlebuilder.py +++ b/Mac/Lib/bundlebuilder.py @@ -245,8 +245,9 @@ class AppBuilder(BundleBuilder): BundleBuilder.setup(self) - def preProcess(self): self.plist.CFBundleExecutable = self.name + + def preProcess(self): resdir = pathjoin("Contents", "Resources") if self.executable is not None: if self.mainprogram is None: @@ -311,7 +312,7 @@ def pathjoin(*args): cmdline_doc = """\ Usage: - python [options] command + python bundlebuilder.py [options] command python mybuildscript.py [options] command Commands: |