We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aea0aa commit 0773861Copy full SHA for 0773861
chaoslib/provider/python.py
@@ -93,7 +93,8 @@ def validate_python_activity(activity: Activity): # noqa: C901
93
raise InvalidActivity(
94
"could not find Python module '{mod}' "
95
"in activity '{name}'"
96
- "\nthe error is:\n{error}".format(mod=mod_name, name=activity_name, error=e)
+ "\nerror traceback:\n{error}".format(
97
+ mod=mod_name, name=activity_name, error=e)
98
)
99
100
found_func = False
0 commit comments