Fix library check in and search bug.

master
Marc Burns 12 years ago
parent a54bf66fea
commit 3c61210328
  1. 2
      ceo/urwid/library.py
  2. 6
      debian/changelog

@ -284,7 +284,7 @@ class SearchPage(urwid.WidgetWrap):
for s in st:
books.append(s.book)
if not books.count():
if ((type(books) != type([])) and books.count() == 0) or books == []:
widgets.append(urwid.Text("No results. Hit ESC to return to search page."))
widgets.append(urwid.Divider())

6
debian/changelog vendored

@ -1,3 +1,9 @@
ceo (0.5.11) stable; urgency=low
* Fix library check in and search bug introduced in 0.5.9+nmu1.
-- Marc Burns <m4burns@csclub.uwaterloo.ca> Fri, 04 Mar 2011 16:52:32 -0500
ceo (0.5.10) stable; urgency=low
* Fix squeeze build warnings

Loading…
Cancel
Save