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

Bugfix in handling help-request during keyboard interaction.

parent cb7062d0
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class Config_runscript_base: ...@@ -252,7 +252,7 @@ class Config_runscript_base:
raise ValueError("%{0}: Cannot find any subdirectory in {1}".format(method_name, base_dir)) raise ValueError("%{0}: Cannot find any subdirectory in {1}".format(method_name, base_dir))
if lprint: if lprint:
print("%{0}: The following subdiretories are found under {1}".format(method_name, base_dir)) print("%{0}: The following subdirectories are found under {1}:".format(method_name, base_dir))
for subdir in dirlist: for subdir in dirlist:
print("* {0}".format(subdir)) print("* {0}".format(subdir))
...@@ -303,7 +303,7 @@ class Config_runscript_base: ...@@ -303,7 +303,7 @@ class Config_runscript_base:
if check_input(input_req): if check_input(input_req):
break break
else: else:
if input_req == "help": if input_req.replace(prefix2arg, "") == "help":
pass pass
else: else:
attempt += 1 attempt += 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment