Fix windows-builder

Fix ssl hook due to PyInstaller changes
This commit is contained in:
Jonathan Springer 2015-09-28 13:33:21 -04:00
parent 188cb87a5a
commit 44c92cd89a
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()