X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..5aa13410812d3fc4b35c039bdc3f0a2edc5185a1:/src/catalogue/management/commands/pack.py diff --git a/src/catalogue/management/commands/pack.py b/src/catalogue/management/commands/pack.py index ba06341b8..98ad7d836 100755 --- a/src/catalogue/management/commands/pack.py +++ b/src/catalogue/management/commands/pack.py @@ -14,11 +14,11 @@ from catalogue.models import Book, Tag class Command(BaseCommand): option_list = BaseCommand.option_list + ( make_option('-t', '--tags', dest='tags', metavar='SLUG,...', - help='Use only books tagged with this tags'), + help='Use only books tagged with this tags'), make_option('-i', '--include', dest='include', metavar='SLUG,...', - help='Include specific books by slug'), + help='Include specific books by slug'), make_option('-e', '--exclude', dest='exclude', metavar='SLUG,...', - help='Exclude specific books by slug') + help='Exclude specific books by slug') ) help = 'Prepare ZIP package with files of given type.' args = '[%s] output_path.zip' % '|'.join(Book.formats)