From 4a45ddb69acff54cd95621ce301e390a7a04b865 Mon Sep 17 00:00:00 2001 From: InsertDisc <31751462+InsertDisc@users.noreply.github.com> Date: Fri, 5 Jul 2024 19:20:51 -0400 Subject: [PATCH] Delimiters now allow being encapsulated within spaces. Allowed delimiters can now have spaces around them. I.E ' / ' as opposed to just '/' --- pattrmm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pattrmm.py b/pattrmm.py index 64085a3..1164926 100644 --- a/pattrmm.py +++ b/pattrmm.py @@ -2366,7 +2366,7 @@ def __init__(self, id, title, first_air_date, last_air_date, next_air_date, stat try: date_delimiter = vars.setting('delimiter') - allowed_delimiter_symbols = ['/', '-', '.', '_'] + allowed_delimiter_symbols = ['/', '-', '.', '_', ' / ', ' - ', ' . ', ' _ '] if date_delimiter not in allowed_delimiter_symbols: date_delimiter = "/" except: