Skip to content
Snippets Groups Projects
Unverified Commit b6c4a58a authored by Johannes Wolf's avatar Johannes Wolf Committed by GitHub
Browse files

add alias command for makemessages and used parameters (#1664)

parent 5c7c5786
Branches
No related tags found
No related merge requests found
from django.core.management import call_command
from django.core.management.base import BaseCommand
class Command(BaseCommand):
args = ""
help = 'Execute "makemessages --locale=de --ignore=node_modules/*"'
def handle(self, *args, **options):
self.stdout.write('Executing "manage.py makemessages --locale=de --ignore=node_modules/*"')
call_command("makemessages", "--locale=de", "--ignore=node_modules/*")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment