Remove jinja2.asyncsupport from PyInstaller, because it's not used and causes a crash during building

This commit is contained in:
Micah Lee 2017-02-21 14:26:45 -08:00
parent 6f5c53d1c3
commit 42d2b0b417
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -20,7 +20,7 @@ a = Analysis(
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
excludes=['jinja2.asyncsupport'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=None)