Revert "contrib: Fix capture_output in getcoins.py"

This reverts commit be59bd17ec
because the changes are no longer needed.
pull/26226/head
MarcoFalke 2 years ago
parent dddd462137
commit fa2a23548a
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

@ -129,7 +129,7 @@ if args.captcha != '': # Retrieve a captcha
# Convert SVG image to PPM, and load it
try:
rv = subprocess.run([args.imagemagick, 'svg:-', '-depth', '8', 'ppm:-'], input=res.content, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
rv = subprocess.run([args.imagemagick, 'svg:-', '-depth', '8', 'ppm:-'], input=res.content, check=True, capture_output=True)
except FileNotFoundError:
raise SystemExit(f"The binary {args.imagemagick} could not be found. Please make sure ImageMagick (or a compatible fork) is installed and that the correct path is specified.")

Loading…
Cancel
Save