Another slight date-parsing fix

This commit is contained in:
digimint 2025-11-21 17:22:42 -06:00
parent 8dfc7cf043
commit 31da44e847
Signed by: digimint
GPG key ID: 8DF1C6FD85ABF748

View file

@ -489,7 +489,7 @@ ABSOLUTE_TIMESTAMP_RE = re.compile(
+ '(?P<year>[0-9][0-9]+)?'
+ '(?:[-:\\/\\s]*(?P<month>[0-9]{1,2}))?'
+ '(?:[-:\\/\\s]*(?P<day>[0-9]{1,2}))?'
+ f' ?(?P<time_group>{TIME_RE})?'
+ f'(?P<time_group> {TIME_RE})?'
+ '$'
)