From c8cc5a05986f33b402693c32ac58d1873c86e991 Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 28 Jun 2009 11:33:13 -0400 Subject: [PATCH] Add isbn to search. --- src/calibre/library/database2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/database2.py b/src/calibre/library/database2.py index 730ca364d5..3550253ffa 100644 --- a/src/calibre/library/database2.py +++ b/src/calibre/library/database2.py @@ -198,7 +198,7 @@ class ResultCache(SearchQueryParser): query = query.decode('utf-8') if location in ('tag', 'author', 'format'): location += 's' - all = ('title', 'authors', 'publisher', 'tags', 'comments', 'series', 'formats') + all = ('title', 'authors', 'publisher', 'tags', 'comments', 'series', 'formats', 'isbn') MAP = {} for x in all: MAP[x] = FIELD_MAP[x]