On 11/1/12 9:37 AM, w...@mac.com wrote:
When running the script directly in the interpreter, that is, when I invoke is as $ 
./CM_GUI_2.py in a terminal window (or as $ python CM_GUI_2.py) the first menu to the 
right of the Apple icon (the one I'd call the Application menu) remains named 
"Python" - although the menu under it now includes the items I've created.

That's expected behavior. The application name in the app menu corresponds to the actual executable that is running the app. When you run the app in Terminal, the executable is Python. When it's wrapped with py2app, the executable is the actual app name (actually, the stub executable created by py2app, but which is renamed to match your app). You shouldn't expect to see anything but what you are seeing.

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG

Reply via email to