From 1a1d20a89f8f3633aea3498ecc10c65d0a8eadb5 Mon Sep 17 00:00:00 2001 From: Paul Mulders Date: Thu, 7 Dec 2023 13:40:32 +0100 Subject: [PATCH] rename webapi command --version to --apiver to avoid conflict --- steamctl/commands/webapi/__init__.py | 2 +- steamctl/commands/webapi/cmds.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/steamctl/commands/webapi/__init__.py b/steamctl/commands/webapi/__init__.py index 0e34131..05176f9 100644 --- a/steamctl/commands/webapi/__init__.py +++ b/steamctl/commands/webapi/__init__.py @@ -97,7 +97,7 @@ def parameter_autocomplete(prefix, parsed_args, **kwargs): help='Output format') scp_call.add_argument('--method', choices=['GET', 'POST'], type=str, help='HTTP method to use') - scp_call.add_argument('--version', type=int, + scp_call.add_argument('--apiver', type=int, help='Method version') scp_call.add_argument('endpoint', type=str, help='WebAPI endpoint name (eg ISteamWebAPIUtil.GetSupportedAPIList)')\ diff --git a/steamctl/commands/webapi/cmds.py b/steamctl/commands/webapi/cmds.py index 81bd9af..61348d3 100644 --- a/steamctl/commands/webapi/cmds.py +++ b/steamctl/commands/webapi/cmds.py @@ -93,7 +93,7 @@ def cmd_webapi_call(args): return 1 # error apicall = webapi.get - version = args.version or 1 + version = args.apiver or 1 if args.method == 'POST': apicall = webapi.post @@ -115,7 +115,7 @@ def cmd_webapi_call(args): if args.method is None: if webapi_map[args.endpoint][0] == 'POST': apicall = webapi.post - if args.version is None: + if args.apiver is None: version = webapi_map[args.endpoint][1] # drop reserved words. these have special meaning for steam.webapi