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

Remove line breaks for strings for keyboard interaction.

parent 762db50b
No related branches found
No related tags found
No related merge requests found
Pipeline #59421 passed
...@@ -274,7 +274,7 @@ class Config_runscript_base: ...@@ -274,7 +274,7 @@ class Config_runscript_base:
attempt += 1 attempt += 1
if attempt < ntries: if attempt < ntries:
print(err) print(err)
console_str = "Retry!\n" console_str = "Retry!"
else: else:
raise err raise err
......
...@@ -60,7 +60,7 @@ def main(): ...@@ -60,7 +60,7 @@ def main():
keyboard_interaction = config_dummy.keyboard_interaction keyboard_interaction = config_dummy.keyboard_interaction
# get workflow step by keyboard interaction # get workflow step by keyboard interaction
target_runscript_req = "Please enter the name of the workflow step for which a runscript should be created:\n" target_runscript_req = "Please enter the name of the workflow step for which a runscript should be created:"
target_runscript_err = ValueError("Workflow step is unknown. Please select one of the known listed above") target_runscript_err = ValueError("Workflow step is unknown. Please select one of the known listed above")
def check_target_runscript(runscript_name, silent=False): def check_target_runscript(runscript_name, silent=False):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment