Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5375c70

Browse files
committed
minor fix
1 parent 27d9d42 commit 5375c70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extra/shutils/regressiontest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
test_count = int(failed_test[1])
3838
parse = failed_test[3] if failed_test[3] else None
3939
output_folder = failed_test[4]
40-
traceback = bool(failed_test[5])
40+
traceback = False if failed_test[5] == "False" else bool(failed_test[5])
4141
detection = True if failed_test[6] else False
4242

4343
TEST_COUNTS.append(test_count)

0 commit comments

Comments
 (0)