summaryrefslogtreecommitdiff
path: root/tests/system/shared/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/project.py')
-rw-r--r--tests/system/shared/project.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index babbf0eb6e..7b58b95c9f 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -120,7 +120,7 @@ def __handleBuildSystem__(buildSystem):
selectFromCombo(combo, buildSystem)
except:
t, v = sys.exc_info()[:2]
- test.warning("Exception while handling build system", "%s(%s)" % (str(t), str(v)))
+ test.warning("Exception while handling build system", "%s: %s" % (t.__name__, str(v)))
clickButton(waitForObject(":Next_QPushButton"))
return buildSystem
@@ -131,7 +131,7 @@ def __createProjectHandleQtQuickSelection__(minimumQtVersion):
selectFromCombo(comboBox, minimumQtVersion)
except:
t,v = sys.exc_info()[:2]
- test.fatal("Exception while trying to select Qt version", "%s (%s)" % (str(t), str(v)))
+ test.fatal("Exception while trying to select Qt version", "%s :%s" % (t.__name__, str(v)))
clickButton(waitForObject(":Next_QPushButton"))
return minimumQtVersion