fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'pretty' of github.com:fnp/wolnelektury into pretty
[wolnelektury.git]
/
apps
/
catalogue
/
models.py
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
7f20b4e
..
091e661
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-763,7
+763,7
@@
class Book(models.Model):
book_descendants += list(child_book.children.all())
for tag in descendants_tags:
book_descendants += list(child_book.children.all())
for tag in descendants_tags:
- touch_tag
.delay
(tag)
+ touch_tag(tag)
book.save()
book.save()
@@
-1051,7
+1051,7
@@
def _tags_updated_handler(sender, affected_tags, **kwargs):
# reset tag global counter
# we want Tag.changed_at updated for API to know the tag was touched
for tag in affected_tags:
# reset tag global counter
# we want Tag.changed_at updated for API to know the tag was touched
for tag in affected_tags:
- touch_tag
.delay
(tag)
+ touch_tag(tag)
# if book tags changed, reset book tag counter
if isinstance(sender, Book) and \
# if book tags changed, reset book tag counter
if isinstance(sender, Book) and \