X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5f176bb52a7a59bf88f5728e60a3a62e12fb3d54..1f9103b1e752a6c41d2304bf5e41a7d6ae0c45c8:/apps/catalogue/tasks.py diff --git a/apps/catalogue/tasks.py b/apps/catalogue/tasks.py index d5e8529b1..cb6fd6432 100644 --- a/apps/catalogue/tasks.py +++ b/apps/catalogue/tasks.py @@ -13,9 +13,10 @@ from wolnelektury.utils import localtime_to_utc def touch_tag(tag): update_dict = { 'book_count': tag.get_count(), + 'picture_count': tag.get_picture_count(), 'changed_at': localtime_to_utc(datetime.now()), } - + print update_dict type(tag).objects.filter(pk=tag.pk).update(**update_dict)