Catching other error message for wrong architecture.
Current wxPython packages only work in 32-bit mode. If we detect that there is an error message complaining about the architecture, we restart scyther-gui.py using python in 32-bit mode.
This commit is contained in:
parent
1648d14d98
commit
d1537b1848
@ -36,7 +36,7 @@ The [wxPython] packages can be found at http://www.wxpython.org/
|
|||||||
|
|
||||||
Ubuntu users: the wxPython packages are called 'python-wxgtk' followed by the
|
Ubuntu users: the wxPython packages are called 'python-wxgtk' followed by the
|
||||||
version number."""
|
version number."""
|
||||||
elif '32-bit mode' in str(err):
|
elif ('32-bit mode' in str(err)) or ('no matching architecture' in str(err)):
|
||||||
import os
|
import os
|
||||||
|
|
||||||
key = "VERSIONER_PYTHON_PREFER_32_BIT"
|
key = "VERSIONER_PYTHON_PREFER_32_BIT"
|
||||||
|
Loading…
Reference in New Issue
Block a user