Merge branch 'fix-link-pyqt' of https://github.com/Kingdread/qutebrowser into Kingdread-fix-link-pyqt

This commit is contained in:
Florian Bruhin 2016-05-08 19:12:26 +02:00
commit 55f6ce1c95

View File

@ -191,7 +191,7 @@ def get_tox_syspython(tox_path):
path = os.path.join(tox_path, '.tox-config1')
with open(path, encoding='ascii') as f:
line = f.readline()
_md5, sys_python = line.rstrip().split(' ')
_md5, sys_python = line.rstrip().split(' ', 1)
return sys_python