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
Branches
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ class Config_runscript_base:
raise ValueError("%{0}: Cannot find any subdirectory in {1}".format(method_name, base_dir))
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:
print("* {0}".format(subdir))
......@@ -303,7 +303,7 @@ class Config_runscript_base:
if check_input(input_req):
break
else:
if input_req == "help":
if input_req.replace(prefix2arg, "") == "help":
pass
else:
attempt += 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment