From b1287ad2fa5a734dd56193d54ec07c66b0865f0c Mon Sep 17 00:00:00 2001 From: vg Date: Fri, 27 Mar 2026 00:03:19 +0100 Subject: fix args handling for run, now GAME_ID is a list --- gamechestcli/src/gamechest/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamechestcli/src/gamechest/__main__.py b/gamechestcli/src/gamechest/__main__.py index b7f1efb..dcea550 100755 --- a/gamechestcli/src/gamechest/__main__.py +++ b/gamechestcli/src/gamechest/__main__.py @@ -63,7 +63,7 @@ def main(): profile_id = args['--profile_id'] or config.get_profile_id() if not profile_id: print('profile_id must be not null', file=sys.stderr) - run.run(args['GAME_ID'], profile_id) + run.run(args['GAME_ID'][0], profile_id) elif args['set']: if args['--profile_id']: config.set_profile_id(args['--profile_id']) -- cgit v1.2.3