summaryrefslogtreecommitdiffstats
path: root/gamechestcli
diff options
context:
space:
mode:
authorvg <vgm+dev@devys.org>2026-03-27 00:01:47 +0100
committervg <vgm+dev@devys.org>2026-03-27 00:01:47 +0100
commit1218c29e54bb8560d6d2b3d010a94b14f0f17f45 (patch)
treeda20a644f1a6d89c0caa83efd2a8d6edcc89fda4 /gamechestcli
parentda35d00c91dbd81215d7f3aa478b2af891aa5ace (diff)
downloadgamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.tar.gz
gamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.tar.bz2
gamechest-1218c29e54bb8560d6d2b3d010a94b14f0f17f45.zip
fix argument name
Diffstat (limited to 'gamechestcli')
-rwxr-xr-xgamechestcli/src/gamechest/__main__.py2
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'])