David Cortesi píše v So 08. 10. 2011 v 09:42 -0700:
> # add per http://www.pyinstaller.org/wiki/MacOsCompatibility
> # to build an app bundle
> import sys
> if sys.platform.startswith("darwin"):
>     app = BUNDLE(exe,
>                  name=os.path.join('dist', 'PPQT.app'),
>                  version=0.1)
> ============================= 

I'm sorry, this should be the right code for app bundle:

import sys 
if sys.platform.startswith("darwin"):
    app = BUNDLE(coll,
        name=os.path.join('dist','PPQT.app'),
        version='0.1')


It is now fixed in wiki.

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to