Merge pull request #77 from K0nne/patch-1

fix missing type conversion for --data
This commit is contained in:
Markus Opolka 2022-09-08 09:59:28 +02:00 committed by GitHub
commit 2e6eaeea59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -599,13 +599,15 @@ def main(cliargs):
for header in headers: for header in headers:
req.add_header(header, headers[header]) req.add_header(header, headers[header])
if args.timeout and args.data: if args.timeout and args.data:
databytes = str(args.data).encode()
response = urllib.request.urlopen(req, timeout=args.timeout, response = urllib.request.urlopen(req, timeout=args.timeout,
data=args.data, context=context) data=databytes, context=context)
elif args.timeout: elif args.timeout:
response = urllib.request.urlopen(req, timeout=args.timeout, response = urllib.request.urlopen(req, timeout=args.timeout,
context=context) context=context)
elif args.data: elif args.data:
response = urllib.request.urlopen(req, data=args.data, context=context) databytes = str(args.data).encode()
response = urllib.request.urlopen(req, data=databytes, context=context)
else: else:
response = urllib.request.urlopen(req, context=context) response = urllib.request.urlopen(req, context=context)