From 0d491aed9023d8399b621908268bbdd8197222f4 Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 29 Dec 2021 13:13:00 +0100 Subject: [PATCH] [cli] Improve CrossOver option help text --- legendary/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 00f49f0..070f0fe 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2322,10 +2322,10 @@ def main(): if sys_platform == 'darwin': launch_parser.add_argument('--crossover', dest='crossover', action='store_true', help='Interactively configure CrossOver for this application.') - launch_parser.add_argument('--crossover-app', dest='crossover_app', action='store', + launch_parser.add_argument('--crossover-app', dest='crossover_app', action='store', metavar='', help='Specify which App to use for CrossOver (e.g. "/Applications/CrossOver.app")') launch_parser.add_argument('--crossover-bottle', dest='crossover_bottle', action='store', - help='Specify which bottle to use for CrossOver') + help='Specify which bottle to use for CrossOver', metavar='') else: launch_parser.add_argument('--crossover', dest='crossover', action='store_true', help=argparse.SUPPRESS)