From dfaccba2cbb9f4e2bc6a7ead303c8f0682541c59 Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 30 Dec 2021 15:36:03 +0100 Subject: [PATCH] [cli] Fix crossover subcommand name --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 76a97a6..c3c4565 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2607,7 +2607,7 @@ def main(): cli.get_token(args) elif args.subparser_name == 'eos-overlay': cli.manage_eos_overlay(args) - elif args.subparser_name == 'crossover-setup': + elif args.subparser_name == 'crossover': cli.crossover_setup(args) except KeyboardInterrupt: logger.info('Command was aborted via KeyboardInterrupt, cleaning up...')