From cc37488ebb25abad297b8150dbaa3468f66f3fc4 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 16 Mar 2023 09:09:45 +0100 Subject: [PATCH] Ignore .nodvdnav files instead of .dvdnav --- transcoder/transcode_dvd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transcoder/transcode_dvd.py b/transcoder/transcode_dvd.py index 70ba03a..d8aed43 100755 --- a/transcoder/transcode_dvd.py +++ b/transcoder/transcode_dvd.py @@ -171,7 +171,7 @@ def list_ripped_dvds(dvd_type): dvd_titles = filter(lambda title: not title.endswith(".err.log"), dvd_titles) dvd_titles = filter(lambda title: not title.endswith(".log"), dvd_titles) dvd_titles = filter(lambda title: not title.endswith(".titles"), dvd_titles) - dvd_titles = filter(lambda title: not title.endswith(".dvdnav"), dvd_titles) + dvd_titles = filter(lambda title: not title.endswith(".nodvdnav"), dvd_titles) return map( lambda dvd_title: Dvd(dvd_type, os.path.join(path, dvd_title)), dvd_titles )