"Current" => "Default"

This commit is contained in:
Jörn-Michael Miehe 2020-08-07 02:01:54 +02:00
parent 9139032a0e
commit 1214137005

View file

@ -9,7 +9,7 @@ from .subcommand import SubCommand
def user_input(config, key, prompt): def user_input(config, key, prompt):
# prompt user as per argument # prompt user as per argument
result = input("{} [Current: {}] ".format(prompt, config[key])).strip() result = input("{} [Default: {}] ".format(prompt, config[key])).strip()
# store result if present # store result if present
if result: if result: