install.py

changeset 4178
0d882b1e0c11
parent 4173
10336d4d1488
child 4238
53bd830433dc
child 4240
171caaf2dac2
diff -r b72888863827 -r 0d882b1e0c11 install.py
--- a/install.py	Sat Mar 14 14:44:28 2015 +0100
+++ b/install.py	Sat Mar 14 19:28:18 2015 +0100
@@ -1128,7 +1128,7 @@
     try:
         import sip
         sipVersion = sip.SIP_VERSION_STR
-        print("sip Version: ", sipVersion.strip())
+        print("sip Version:", sipVersion.strip())
         # always assume, that snapshots are new enough
         if "snapshot" not in sipVersion:
             while sipVersion.count('.') < 2:
@@ -1159,7 +1159,7 @@
     else:
         from PyQt5.QtCore import PYQT_VERSION_STR
     pyqtVersion = PYQT_VERSION_STR
-    print("PyQt Version: ", pyqtVersion.strip())
+    print("PyQt Version:", pyqtVersion.strip())
     # always assume, that snapshots are new enough
     if "snapshot" not in pyqtVersion:
         while pyqtVersion.count('.') < 2:
@@ -1189,7 +1189,7 @@
     else:
         from PyQt5.Qsci import QSCINTILLA_VERSION_STR
     scintillaVersion = QSCINTILLA_VERSION_STR
-    print("QScintilla Version: ", QSCINTILLA_VERSION_STR.strip())
+    print("QScintilla Version:", QSCINTILLA_VERSION_STR.strip())
     # always assume, that snapshots are new enough
     if "snapshot" not in scintillaVersion:
         while scintillaVersion.count('.') < 2:

eric ide

mercurial