From 5b3dd55e1ac449bd885d2232b41fc50e57f75de5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Sep 2009 19:56:38 -0600 Subject: [PATCH] Fix #3288 (Published Date issue) --- src/calibre/ebooks/metadata/google_books.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/metadata/google_books.py b/src/calibre/ebooks/metadata/google_books.py index 374c4a8a5f..fea3117f77 100644 --- a/src/calibre/ebooks/metadata/google_books.py +++ b/src/calibre/ebooks/metadata/google_books.py @@ -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