In article <[EMAIL PROTECTED]>,
 James Stroud <[EMAIL PROTECTED]> wrote:

> Does anyone know of the most straightforward way to get rid of the 
> intensely annoying "console" window that py2app feels so compelled to 
> create?

I include this code in my apps:

    if (sys.platform != "win32") and hasattr(sys, 'frozen'):
        root.tk.call('console', 'hide')

That hides the console in py2app applications.

Dave
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to