[sqlalchemy] Re: problems with py2app

2008-04-26 Thread Koen Bok
Hey Iain, If you build apps with py2app it tries to figure out which modules to include automatically. If these modules are nested in some weird way it sometimes chokes. A solution is to import that module by hand in your main script (your-app-name.py) or telling py2app it needs to add the

[sqlalchemy] Re: problems with py2app

2008-04-26 Thread iain duncan
On Sat, 2008-26-04 at 05:04 -0700, Koen Bok wrote: Hey Iain, If you build apps with py2app it tries to figure out which modules to include automatically. If these modules are nested in some weird way it sometimes chokes. A solution is to import that module by hand in your main script

[sqlalchemy] Re: problems with py2app

2008-04-26 Thread az
well, read that traceback... sqlalchemy/logging.py, line 35: # py2.5 absolute imports will fix logging = __import__('logging') py2app is tracking import xxx' but cannot do __import__() etc lowlevel funcs. u have to give it the python's logging module. On Saturday 26 April 2008 21:01:15