mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 20:43:43 +02:00
Fix #7300 (search date...)
This commit is contained in:
commit
3fd85f7230
1 changed files with 1 additions and 1 deletions
|
|
@ -380,7 +380,7 @@ def get_dates_matches(self, location, query):
|
|||
field_count = 3
|
||||
else:
|
||||
try:
|
||||
qd = parse_date(query)
|
||||
qd = parse_date(query, as_utc=False)
|
||||
except:
|
||||
raise ParseException(query, len(query), 'Date conversion error', self)
|
||||
if '-' in query:
|
||||
|
|
|
|||
Loading…
Reference in a new issue