--- /dev/null
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.core.management import BaseCommand
+
+from catalogue.models import Tag
+
+
+class Command(BaseCommand):
+ help = "Update description for given tag."
+ args = 'category slug description_filename'
+
+ def handle(self, category, slug, description_filename, **options):
+ tag = Tag.objects.get(category=category, slug=slug)
+ description = open(description_filename).read().decode('utf-8')
+ tag.description = description
+ tag.save()