We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When an empty string (curl_command = '') is passed to uncurl.parse_context(curl_command) a python script ends abnormally showing this error:
curl_command = ''
uncurl.parse_context(curl_command)
usage: [-h] [-d DATA] [-b DATA_BINARY] [-X X] [-H HEADER] [--compressed] [-k] [--user USER] [-i] [-s] command url : error: the following arguments are required: command, url
The abnormal termination could be fixed with something like
try: parsed_args = parser.parse_args(tokens) except: pass
in
uncurl/uncurl/api.py
Line 36 in 16d0568
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When an empty string (
curl_command = ''
) is passed touncurl.parse_context(curl_command)
a python script ends abnormally showing this error:The abnormal termination could be fixed with something like
in
uncurl/uncurl/api.py
Line 36 in 16d0568
The text was updated successfully, but these errors were encountered: