Uncomment code commented for testing

This commit is contained in:
Julian Mutter 2022-08-18 12:55:09 +02:00
parent 9841ce70b4
commit d117ff2de4

View File

@ -102,10 +102,9 @@ def write_to_logfile(args, tag):
def rip_to_tmp_dir(args) -> bool:
"""Returns: success of command"""
command = create_rip_command(args, TMP_DIR)
# proc = subprocess.run(command, shell=True, capture_output=False)
proc = subprocess.run(command, shell=True, capture_output=False)
# return proc.returncode == 0
return True
return proc.returncode == 0
def create_rip_command(args, dest):