[python-win32] py2exe bug with email.MIMEText
Marcus.CM
marcus at internetnowasp.net
Fri Aug 1 08:31:17 CEST 2008
There is a bug with py2exe when (at least under windows) when importing
email
# example testmime.py
import email
msg = email.MIMEText.MIMEText("dsafdafdasfA")
print "ok"
1. Save the text above and setup as testmime.py
2. Run it and u can see "ok"
3. Create setup.py and run : python setup.py py2exe
4. Run the testmime.exe and u will get error "Import error : No module
name text"
# Example setup.py
from distutils.core import setup
import py2exe
setup(console=['testmime.py'])
Anyone knows the fix for this?
More information about the python-win32
mailing list