tags wired to pictures
[wolnelektury.git] / apps / catalogue / tasks.py
index d5e8529..cb6fd64 100644 (file)
@@ -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)