From cf9f225b9b29c9b3ba27a5de946da9047d9c1df9 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sun, 22 Sep 2024 23:00:59 +0200 Subject: [PATCH] master only source formats --- bin/mastering/mastering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mastering/mastering.py b/bin/mastering/mastering.py index 7e8b095..b6fedba 100755 --- a/bin/mastering/mastering.py +++ b/bin/mastering/mastering.py @@ -170,7 +170,7 @@ class TeleCasterMastering(object): source_files = [] for file in dir_files: filename, ext = os.path.splitext(path + os.sep + file) - if ext[1:] in self.raw_source_formats: + if ext[1:] in self.raw_source_formats or ext[1:] in self.source_formats: source_files.append(path + os.sep + file) if self.verbose_mode: -- 2.39.5