Skip to content
Snippets Groups Projects
Commit 31b0c3b6 authored by Michael Langguth's avatar Michael Langguth
Browse files

Correction to ValueError-message in config_utils.py.

parent 58607033
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ class Config_runscript_base: ...@@ -142,7 +142,7 @@ class Config_runscript_base:
err = ValueError("%{0}: Could not find the attribute runscript_name.".format(method_name)) err = ValueError("%{0}: Could not find the attribute runscript_name.".format(method_name))
if err is None: if err is None:
if self.runscript_template is None: if self.runscript_template is None:
raise ValueError("%{0}: Attribute runscript_name is still uninitialized.".format(method_name)) raise ValueError("%{0}: Attribute runscript_template is still uninitialized.".format(method_name))
else: else:
raise err raise err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment