diff options
| author | vg <vgm+dev@devys.org> | 2026-03-27 00:01:47 +0100 |
|---|---|---|
| committer | vg <vgm+dev@devys.org> | 2026-03-27 00:01:47 +0100 |
| commit | 1218c29e54bb8560d6d2b3d010a94b14f0f17f45 (patch) | |
| tree | da20a644f1a6d89c0caa83efd2a8d6edcc89fda4 | |
| parent | da35d00c91dbd81215d7f3aa478b2af891aa5ace (diff) | |
| download | gamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.tar.gz gamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.tar.bz2 gamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.zip | |
fix argument name
| -rwxr-xr-x | gamechestcli/src/gamechest/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gamechestcli/src/gamechest/__main__.py b/gamechestcli/src/gamechest/__main__.py index ddb5247..b7f1efb 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'], profile_id) elif args['set']: if args['--profile_id']: config.set_profile_id(args['--profile_id']) |
