Hi all, I've posted this few minutes ago on c.l.python, but since I'm desperate, I'll do it here to:
I'm working with SQLAlchemy 0.3.3, Python 2.5 and py2exe 0.6.5. This simple scripts fails when I run test.exe: *** test.py: *** import sqlalchemy print 'Test' *** It works when interpreted by Python, but when running it from compiled py2exe binary, it fails with this error: Traceback (most recent call last): File "main.py", line 1, in <module> File "sqlalchemy\__init__.pyc", line 10, in <module> File "sqlalchemy\orm\__init__.pyc", line 12, in <module> File "sqlalchemy\orm\mapper.pyc", line 7, in <module> File "sqlalchemy\logging.pyc", line 30, in <module> ImportError: No module named logging Ofcourse, library.zip (in the dist directory) contains 'sqlalchemy \logging.pyc'. After I copy logging.pyc to library.zips' root, I get this error: Traceback (most recent call last): File "main.py", line 1, in <module> File "sqlalchemy\__init__.pyc", line 10, in <module> File "sqlalchemy\orm\__init__.pyc", line 12, in <module> File "sqlalchemy\orm\mapper.pyc", line 7, in <module> File "sqlalchemy\logging.pyc", line 30, in <module> File "sqlalchemy\logging.pyc", line 33, in <module> AttributeError: 'module' object has no attribute 'getLogger' I really don't know what to do next, so any kind of help is appreciated. First of all, I'm wondering is this SQLAlchemys' problem, or is py2exe guilty? Thanks guys... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
