We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a3c560a + d343c69 commit 8ee7ed5Copy full SHA for 8ee7ed5
domaintools/cli.py
@@ -75,7 +75,7 @@ def run(): # pragma: no cover
75
sys.stderr.write('Credentials are required to perform API calls.\n')
76
sys.exit(1)
77
78
- api = API(user, key, verify_ssl=arguments.pop('verify_ssl'), rate_limit=arguments.pop('rate_limit'))
+ api = API(user, key, app_name="python_wrapper_cli", verify_ssl=arguments.pop('verify_ssl'), rate_limit=arguments.pop('rate_limit'))
79
api_call = arguments.pop('api_call')
80
response = getattr(api, api_call)(**arguments)
81
if api_call in ["available_api_calls"]:
0 commit comments