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.
1 parent 542d3f9 commit 487d0d2Copy full SHA for 487d0d2
convert.py
@@ -45,7 +45,7 @@
45
def exec(cmd):
46
logging.info(f"Executing: {cmd}")
47
try:
48
- subprocess.check_call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.STDERR, shell=True)
+ subprocess.check_call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT, shell=True)
49
except subprocess.CalledProcessError as e:
50
logging.error(f"Command failed with code {e.returncode}. Exiting.")
51
exit(e.returncode)
0 commit comments