batiste/django-page-cms

View on GitHub
pages/plugins/pofiles/management/commands/pages_export_po.py

Summary

Maintainability
A
55 mins
Test Coverage
from django.core.management.base import BaseCommand, CommandError
from pages.plugins.pofiles.utils import export_po_files


class Command(BaseCommand):
    args = '<path>'
    help = export_po_files.__doc__

    def handle(self, *args, **options):
        export_po_files(*args)