pyinstaller: Use qutebrowser/__main__.py

When we use qutebrowser.py, PyInstaller 3.2 gets confused
somehow (because of the name conflict with qutebrowser/ maybe?) and
doesn't do anything when running the bundled app.

With qutebrowser/__main__.py the generated filename is still correct and
it actually works.
This commit is contained in:
Florian Bruhin 2016-05-28 23:18:29 +02:00
parent fc3e1b4ede
commit 90fa2a50ce

View File

@ -37,7 +37,7 @@ else:
icon = None
a = Analysis(['../qutebrowser.py'],
a = Analysis(['../qutebrowser/__main__.py'],
pathex=['misc'],
binaries=None,
datas=get_data_files(),