Merge pull request #6578 from bfirsh/bootloader-ignore-signals

Enable bootloader_ignore_signals in pyinstaller
This commit is contained in:
Chris Crone 2019-03-15 11:48:33 +01:00 committed by GitHub
commit 3b846ac8de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)