Skip to content

Commit 487d0d2

Browse files
committed
revert
1 parent 542d3f9 commit 487d0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
def exec(cmd):
4646
logging.info(f"Executing: {cmd}")
4747
try:
48-
subprocess.check_call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.STDERR, shell=True)
48+
subprocess.check_call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT, shell=True)
4949
except subprocess.CalledProcessError as e:
5050
logging.error(f"Command failed with code {e.returncode}. Exiting.")
5151
exit(e.returncode)

0 commit comments

Comments
 (0)