install.py

changeset 837
10547522aa98
parent 796
a6175e238484
child 896
f855351d5e98
--- a/install.py	Sun Jan 09 18:29:10 2011 +0100
+++ b/install.py	Sun Jan 09 18:57:07 2011 +0100
@@ -578,7 +578,15 @@
         print('Sorry, please install PyQt4.')
         print('Error: {0}'.format(msg))
         exit(1)
-    print("Found PyQt")
+    print("Found PyQt4")
+    
+    try:
+        import PyQt4.QtHelp         # __IGNORE_WARNING__
+    except ImportError as msg:
+        print('Sorry, please install QtHelp.')
+        print('Error: {0}'.format(msg))
+        sys.exit(1)
+    print("Found QtHelp")
     
     try:
         from PyQt4 import Qsci      # __IGNORE_WARNING__

eric ide

mercurial