diff -r 610bdc92efdf -r 140c36248846 install.py --- a/install.py Fri Mar 13 19:02:56 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: