diff --git a/transcoder/transcode_dvd.py b/transcoder/transcode_dvd.py index 05c5eef..1b3eda7 100755 --- a/transcoder/transcode_dvd.py +++ b/transcoder/transcode_dvd.py @@ -67,11 +67,7 @@ def list_ripped_dvds(dvd_type): def is_dvd_files_not_locked(dvd): - return ( - not os.path.exists(dvd + ".lock") - and not os.path.exists(dvd + ".err.log") - and not os.path.exists(dvd + ".log") - ) + return not os.path.exists(dvd + ".lock") and not os.path.exists(dvd + ".err.log") def transcode_ripped_dvd(ripped_dvd, dvd_type):