From 5dcdfefceda2c4a39baf2dca2a8509a58de6c869 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Tue, 11 Jan 2011 17:49:36 +0000 Subject: [PATCH] ... --- 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 495cd9b685..48c62efffe 100644 --- a/src/calibre/library/database2.py +++ b/src/calibre/library/database2.py @@ -1373,7 +1373,7 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns): if r is not None: if (now - r[self.FIELD_MAP['timestamp']]) > delta: tags = r[self.FIELD_MAP['tags']] - tags = tags.lower().split() if tags else [] + tags = tags.lower().split(',') if tags else [] tags = [tag.strip() for tag in tags if tag.strip()] if tag in tags: yield r[self.FIELD_MAP['id']]