add 'timedelta' class to the global namespace in filter expressions

(https://github.com/mikf/gallery-dl/issues/2308#issuecomment-1046135924)
This commit is contained in:
Mike Fährmann 2022-02-23 00:02:10 +01:00
parent cf58048bd4
commit 00fbc942e5
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -424,6 +424,7 @@ GLOBALS = {
"parse_int": text.parse_int,
"urlsplit" : urllib.parse.urlsplit,
"datetime" : datetime.datetime,
"timedelta": datetime.timedelta,
"abort" : raises(exception.StopExtraction),
"terminate": raises(exception.TerminateExtraction),
"re" : re,