"Fix windows-builder

Fix ssl hook due to PyInstaller changes"

bzr-revno: 26
This commit is contained in:
springermac@gmail.com 2015-10-05 22:51:52 +02:00 committed by Raoul Snyman
commit fe32bfd7fe
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,5 @@
from PyInstaller.compat import is_darwin
from PyInstaller.utils.hooks.hookutils import exec_statement
from PyInstaller.utils.hooks import exec_statement
if is_darwin: # TODO check if this is needed on linux
datas = []

View File

@ -306,8 +306,6 @@ class WindowsBuilder(object):
cmd.append('--log-level=ERROR')
else:
cmd.append('--log-level=DEBUG')
if self.args.devel:
cmd.append('-d')
pyinstaller = Popen(cmd, stdout=PIPE)
output = pyinstaller.communicate()[0]
code = pyinstaller.wait()