Revert "contrib: Fix capture_output in getcoins.py"

This reverts commit be59bd17ec
because the changes are no longer needed.
This commit is contained in:
MarcoFalke 2023-01-17 22:02:12 +01:00
parent dddd462137
commit fa2a23548a
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

View File

@ -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.")