- Added librarian as a submodule.
[wolnelektury.git] / apps / catalogue / migrations / 0003_fix_book_count_on_shelves.py
index a161e27..8180311 100644 (file)
@@ -23,11 +23,11 @@ class Migration(DataMigration):
                 'tagged_item': qn(orm.TagRelation._meta.db_table),
                 'tag_id': tag.pk,
             }
-    
+
             cursor = connection.cursor()
             cursor.execute(query)
             book_count = (cursor.fetchone() or (0,))[0]
-            
+
             tag.book_count = book_count
             tag.save()