objects = models.Manager()
tagged = managers.ModelTaggedItemManager(Tag)
tags = managers.TagDescriptor(Tag)
+
@property
def name(self):
if not overwrite:
raise Book.AlreadyExists('Book %s already exists' % book_slug)
# Save shelves for this book
- book_shelves = book.tags.filter(category='set')
+ book_shelves = list(book.tags.filter(category='set'))
book.title = book_info.title
book._short_html = ''
book_themes += themes
book_themes = set(book_themes)
- book.tags = list(book.tags) + list(book_themes) + list(book_shelves)
+ book.tags = list(book.tags) + list(book_themes) + book_shelves
book.save()
return book