Commit d290d0f2 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix regex for EVS format

parent 6ef29884
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ FORMATS_4_SCRIPTS = dict(
    )
)

PATTERN_EVS_FORMAT = re.compile(r"-(" + r"|".join(FORMATS_4_SCRIPTS.keys()) + ")")
PATTERN_EVS_FORMAT = re.compile(r"(" + r"|".join(FORMATS_4_SCRIPTS.keys()) + ")")

for s in SCRIPTS:
    with open(os.path.join(TEST_DIR, s), "r", encoding="UTF-8") as fp: