Enable bootloader_ignore_signals in pyinstaller

Fixes #3347

Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
Ben Firshman 2019-03-12 10:35:09 -04:00 committed by Ulysses Souza
parent 360753ecc1
commit 81b30c4380
1 changed files with 2 additions and 1 deletions

View File

@ -98,4 +98,5 @@ exe = EXE(pyz,
debug=False,
strip=None,
upx=True,
console=True)
console=True,
bootloader_ignore_signals=True)