mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
e3d1ff04b8
git-svn-id: http://svn.pyinstaller.org/trunk@640 8dd32b29-ccff-0310-8a9a-9233e24343b1
7 lines
351 B
Python
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" ]
|