AdamGr 0 Newbie Poster

I am currently trying to convert a program I just wrote to application form, on the Mac. I'm using py2app to accomplish this, and everything works fine up until the last stage; when I try to complete the conversion with:

python setup.py py2app

and then run the resulting executable, I get the error:

ImportError: No module named MySQLdb

The really strange thing is that when I was testing the application creation by making an app bundle, using

python setup.py py2app -A

the resulting application bundle worked perfectly. So something is going wrong between making the app bundle and creating the actual app itself. The entire purpose of my program is database connection, so commenting out that portion of its capabilities is not an option.

Thanks ahead of time,
Adam