From 93639f2f19a714694ac532cc432f5f6ec4cf5aa5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 18 Jul 2007 23:01:01 +0000 Subject: [PATCH] oops --- src/libprs500/gui/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libprs500/gui/widgets.py b/src/libprs500/gui/widgets.py index 20289c634d..d4ab38262b 100644 --- a/src/libprs500/gui/widgets.py +++ b/src/libprs500/gui/widgets.py @@ -747,7 +747,7 @@ class DeviceBooksModel(QAbstractTableModel): for book in self._orig_data: match = True for q in queries: - if q in book.title.lower() or q in book.author.lower(): continue + if q in book.title.lower() or q in book.authors.lower(): continue else: match = False break