Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTalank <talank@gces.edu.np>2022-06-02 11:34:38 +0300
committerTalank <talank@gces.edu.np>2022-06-02 11:34:38 +0300
commit103989a94f25e49f7b3ec13adb9c18020c8226d8 (patch)
treebb5691038e4a92b5bc67d6c83fa6fdac6619684c
parentcafe47cd8920b79f0b50201531a67f5705ab3d17 (diff)
Converted stacktrace error into str while loggingfix-nightly-bdd-hooks
-rw-r--r--test/gui/shared/scripts/bdd_hooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gui/shared/scripts/bdd_hooks.py b/test/gui/shared/scripts/bdd_hooks.py
index bfb1f21b8..1ac60bc98 100644
--- a/test/gui/shared/scripts/bdd_hooks.py
+++ b/test/gui/shared/scripts/bdd_hooks.py
@@ -145,7 +145,7 @@ def hook(context):
generateStacktrace(context, coredumps)
test.log("Stacktrace generated!")
except Exception as err:
- test.log("Exception occured:" + err)
+ test.log("Exception occured:" + str(err))
else:
test.log("No coredump found!")