diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-05 14:44:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-05 14:44:54 (GMT) |
commit | 620c0837bd4bcc7253cf402c553a50f64e5b9619 (patch) | |
tree | f3b614954118260db54b07ea926fd07fb7a18887 | |
parent | cc81b807106e82ad71d8dfae1c4edf9c77b4c72c (diff) | |
download | cpython-620c0837bd4bcc7253cf402c553a50f64e5b9619.zip cpython-620c0837bd4bcc7253cf402c553a50f64e5b9619.tar.gz cpython-620c0837bd4bcc7253cf402c553a50f64e5b9619.tar.bz2 |
Actually *do* override the type in AppBuilder.
-rwxr-xr-x | Lib/plat-mac/bundlebuilder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index cd370fd..9e4fc91 100755 --- a/Lib/plat-mac/bundlebuilder.py +++ b/Lib/plat-mac/bundlebuilder.py @@ -291,7 +291,7 @@ execfile(os.path.join(os.path.split(__file__)[0], "%(realmainprogram)s")) class AppBuilder(BundleBuilder): # Override type of the bundle. - type = "BNDL" + type = "APPL" # platform, name of the subfolder of Contents that contains the executable. platform = "MacOS" |