From d117ff2de4734ae9007aad85e7a4ddfd929bd41d Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 18 Aug 2022 12:55:09 +0200 Subject: [PATCH] Uncomment code commented for testing --- ripper/rip_dvd.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ripper/rip_dvd.py b/ripper/rip_dvd.py index 4e2918c..1ce3d0a 100755 --- a/ripper/rip_dvd.py +++ b/ripper/rip_dvd.py @@ -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):