fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Patched pagination_tags.py in pagination app to raise Http404 if page doesn't exist.
[wolnelektury.git]
/
apps
/
catalogue
/
models.py
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
18e7e80
..
60d2785
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-164,7
+164,7
@@
class Book(models.Model):
if not overwrite:
raise Book.AlreadyExists('Book %s already exists' % book_slug)
# Save shelves for this book
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.title = book_info.title
book._short_html = ''
@@
-230,7
+230,7
@@
class Book(models.Model):
book_themes += themes
book_themes = set(book_themes)
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
book.save()
return book