From edadf1c7807d40a7948bc8ba2fe48c5e90a09abe Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 31 Dec 2021 18:59:34 +0100 Subject: [PATCH] [cli] Fix argument dest for --bottle --- legendary/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 6594f28..759c9e5 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2660,10 +2660,10 @@ def main(): eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help='WINE prefix to install the overlay in') else: - eos_overlay_parser.add_argument('--bottle', dest='prefix', action='store', help=argparse.SUPPRESS) + eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS) else: eos_overlay_parser.add_argument('--prefix', dest='prefix', action='store', help=argparse.SUPPRESS) - eos_overlay_parser.add_argument('--bottle', dest='prefix', action='store', help=argparse.SUPPRESS) + eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS) eos_overlay_parser.add_argument('--app', dest='app', action='store', help=argparse.SUPPRESS)