This commit is contained in:
Kovid Goyal 2010-12-22 16:07:20 -07:00
commit a12b8c9759

View File

@ -139,9 +139,9 @@ class CollectionsBookList(BookList):
ca = []
for c in collection_attributes:
if c.startswith('aba:') and c[4:]:
all_by_author = c[4:]
all_by_author = c[4:].strip()
elif c.startswith('abt:') and c[4:]:
all_by_title = c[4:]
all_by_title = c[4:].strip()
else:
ca.append(c.lower())
collection_attributes = ca