Skip to content

Commit

Permalink
Delimiters now allow being encapsulated within spaces.
Browse files Browse the repository at this point in the history
Allowed delimiters can now have spaces around them. I.E ' / ' as opposed to just '/'
  • Loading branch information
InsertDisc authored Jul 5, 2024
1 parent 5aa15f2 commit 4a45ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pattrmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4a45ddb

Please sign in to comment.