py2exe bug with email.MIMEText

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Marcus.CM

    py2exe bug with email.MIMEText

    There is a bug with py2exe when (at least under windows) when importing
    email

    # example testmime.py
    import email
    msg = email.MIMEText. MIMEText("dsafd afdasfA")
    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?



Working...