Allow transcoding when .log file exists

This commit is contained in:
Julian Mutter 2022-08-23 16:03:03 +02:00
parent 3f6fcf2248
commit 0caafbb2f0

View File

@ -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):