Files
pyinstaller/hooks/hook-email.message.py
giovannibajo e3d1ff04b8 Fix another hidden import in email.
git-svn-id: http://svn.pyinstaller.org/trunk@640 8dd32b29-ccff-0310-8a9a-9233e24343b1
2009-03-04 09:35:34 +00:00

7 lines
351 B
Python

# email.message imports the old-style naming of two modules:
# email.Iterators and email.Generator. Since those modules
# don't exist anymore and there are import trick to map them
# to the real modules (lowercase), we need to specify them
# as hidden imports to make PyInstaller package them.
hiddenimports = [ "email.iterators", "email.generator" ]