Sat, 05 Jul 2014 14:39:33 +0200
Fixed a bug in the install script.
(grafted from e31b1fafad14c3439fcc9bf66214cf4f82a79701)
install.py | file | annotate | diff | comparison | revisions |
--- a/install.py Sat Jul 05 12:23:15 2014 +0200 +++ b/install.py Sat Jul 05 14:39:33 2014 +0200 @@ -897,12 +897,12 @@ exit(1) print("Found QScintilla2") + modulesOK = True for impModule in [ "PyQt4.QtGui", "PyQt4.QtNetwork", "PyQt4.QtSql", "PyQt4.QtSvg", "PyQt4.QtWebKit", ]: name = impModule.split(".")[1] - modulesOK = True try: __import__(impModule) print("Found", name)