Support more characters in Title REGEX

I'm pretty sure this affected the processing and wasn't simply affecting the counting. But it's really late/early in the night/morning and I don't wanna think too hard.
This commit is contained in:
Xevion
2021-09-06 05:17:45 -05:00
parent 8996dcfb62
commit 944c957e5f

View File

@@ -14,7 +14,7 @@ logger = logging.getLogger(__file__)
logger.setLevel(logging.DEBUG)
REGEX_FULL_PARSE = re.compile(
r'\s*([\w\d\s,-.;\'!\[\]()]{1,})\s+\|\s+(\d{4}-\d{2}-\d{2})\s*(\d{1,2}:\d{2}(?:AM|PM))?\s*(\d{4}-\d{2}-\d{2})?\s*(\d{1,2}:\d{2}(?:AM|PM))?')
r'\s*([\w\d\s,.;\'!#$%^&*@\[\]()+-_=`~?<>]+)\s+\|\s+(\d{4}-\d{2}-\d{2})\s*(\d{1,2}:\d{2}(?:AM|PM))?\s*(\d{4}-\d{2}-\d{2})?\s*(\d{1,2}:\d{2}(?:AM|PM))?')
class LoadDialog(QDialog, Ui_Dialog):