X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c707b18dab443db98a50eb29ec6ce6d00e157293..HEAD:/src/catalogue/management/commands/update_tag_description.py diff --git a/src/catalogue/management/commands/update_tag_description.py b/src/catalogue/management/commands/update_tag_description.py index d13b12005..0fb2ffd95 100644 --- a/src/catalogue/management/commands/update_tag_description.py +++ b/src/catalogue/management/commands/update_tag_description.py @@ -1,15 +1,17 @@ -# -*- 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. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. 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 add_arguments(self, parser): + parser.add_argument('category') + parser.add_argument('slug') + parser.add_argument('description_filename') def handle(self, category, slug, description_filename, **options): tag = Tag.objects.get(category=category, slug=slug)