Commit caf67684 authored by Michal Čihař's avatar Michal Čihař

Add missing args specification

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 4f7ae449
......@@ -25,6 +25,7 @@ import json
class Command(BaseCommand):
help = 'dumps user data to JSON file'
args = '<json-file>'
def handle(self, *args, **options):
'''
......
......@@ -28,6 +28,7 @@ import json
class Command(BaseCommand):
help = 'imports userdata from JSON dump of database'
args = '<json-file>'
def import_subscriptions(self, profile, userprofile):
"""
......
......@@ -25,6 +25,7 @@ import json
class Command(BaseCommand):
help = 'imports users from JSON dump of database'
args = '<json-file>'
def handle(self, *args, **options):
'''
......
......@@ -24,6 +24,7 @@ from weblate.lang.models import Language
class Command(BaseCommand):
help = 'Checks language definitions against rst/csv file'
args = '<test-file>'
def handle(self, *args, **options):
'''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment