A little tweak to the version outputs of the install script.

Sat, 14 Mar 2015 19:28:18 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 14 Mar 2015 19:28:18 +0100
changeset 4178
0d882b1e0c11
parent 4177
b72888863827
child 4180
50fa3b7454e2

A little tweak to the version outputs of the install script.

install.py file | annotate | diff | comparison | revisions
--- 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