mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #3288 (Published Date issue)
This commit is contained in:
parent
145fb221d2
commit
5b3dd55e1a
@ -153,7 +153,7 @@ class ResultList(list):
|
||||
d = date(entry)
|
||||
if d:
|
||||
default = datetime.utcnow()
|
||||
default = datetime(default.year, default.month, 1)
|
||||
default = datetime(default.year, default.month, 15)
|
||||
d = parser.parse(d[0].text, default=default)
|
||||
else:
|
||||
d = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user