From 918841a7438d821fec8400237556d1b7453c6be6 Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 30 May 2020 01:09:53 +0200 Subject: [PATCH] [cli] Add --yes alias for -y --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 9cdff52..d3c4dcd 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -856,7 +856,7 @@ def main(): # general arguments parser.add_argument('-v', dest='debug', action='store_true', help='Set loglevel to debug') - parser.add_argument('-y', dest='yes', action='store_true', help='Default to yes for all prompts') + parser.add_argument('-y', '--yes', dest='yes', action='store_true', help='Default to yes for all prompts') parser.add_argument('-V', dest='version', action='store_true', help='Print version and exit') # all the commands