Commit d1799233 authored by Loic Bistuer's avatar Loic Bistuer
Browse files

Fixed clash caused by the newly introduced -e shorthand for makemessages --exclude.

This fixes a regression caused by 0707b824. Refs #22328.
parent 0dce44e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ class Command(BaseCommand):
        make_option('--locale', '-l', dest='locale', action='append', default=[],
                    help='Locale(s) to process (e.g. de_AT). Default is to process all. Can be '
                         'used multiple times.'),
        make_option('--exclude', '-e', dest='exclude', action='append', default=[],
        make_option('--exclude', '-x', dest='exclude', action='append', default=[],
                    help='Locales to exclude. Default is none. Can be used multiple times.'),
    )
    help = 'Compiles .po files to .mo files for use with builtin gettext support.'
+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ class Command(NoArgsCommand):
        make_option('--locale', '-l', default=[], dest='locale', action='append',
            help='Creates or updates the message files for the given locale(s) (e.g. pt_BR). '
                 'Can be used multiple times.'),
        make_option('--exclude', '-e', default=[], dest='exclude', action='append',
        make_option('--exclude', '-x', default=[], dest='exclude', action='append',
                    help='Locales to exclude. Default is none. Can be used multiple times.'),
        make_option('--domain', '-d', default='django', dest='domain',
            help='The domain of the message files (default: "django").'),
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ output a full stack trace whenever an exception is raised.
.I \-l, \-\-locale=LOCALE
The locale to process when using makemessages or compilemessages.
.TP
.I \-e, \-\-exclude=LOCALE
.I \-x, \-\-exclude=LOCALE
The locale to exclude from processing when using makemessages or compilemessages.
.TP
.I \-d, \-\-domain=DOMAIN
+6 −6
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ specify the locale(s) to process. If not provided, all locales are processed.

.. versionadded:: 1.8

Use the :djadminopt:`--exclude` option (or its shorter version ``-e``) to
Use the :djadminopt:`--exclude` option (or its shorter version ``-x``) to
specify the locale(s) to exclude from processing. If not provided, no locales
are excluded.

@@ -155,8 +155,8 @@ Example usage::
    django-admin.py compilemessages -l pt_BR -l fr
    django-admin.py compilemessages --exclude=pt_BR
    django-admin.py compilemessages --exclude=pt_BR --exclude=fr
    django-admin.py compilemessages -e pt_BR
    django-admin.py compilemessages -e pt_BR -e fr
    django-admin.py compilemessages -x pt_BR
    django-admin.py compilemessages -x pt_BR -x fr

createcachetable
----------------
@@ -563,7 +563,7 @@ specify the locale(s) to process.

.. versionadded:: 1.8

Use the :djadminopt:`--exclude` option (or its shorter version ``-e``) to
Use the :djadminopt:`--exclude` option (or its shorter version ``-x``) to
specify the locale(s) to exclude from processing. If not provided, no locales
are excluded.

@@ -575,8 +575,8 @@ Example usage::
    django-admin.py makemessages -l pt_BR -l fr
    django-admin.py makemessages --exclude=pt_BR
    django-admin.py makemessages --exclude=pt_BR --exclude=fr
    django-admin.py makemessages -e pt_BR
    django-admin.py makemessages -e pt_BR -e fr
    django-admin.py makemessages -x pt_BR
    django-admin.py makemessages -x pt_BR -x fr


.. versionchanged:: 1.7
+13 −1
Original line number Diff line number Diff line
import os
import shutil
import stat
import sys
import unittest

from django.core.management import call_command, CommandError
from django.core.management import call_command, CommandError, execute_from_command_line
from django.core.management.utils import find_command
from django.test import SimpleTestCase
from django.test import override_settings
@@ -138,6 +139,17 @@ class ExcludedLocaleCompilationTests(MessageCompilationTests):
        shutil.copytree('canned_locale', 'locale')
        self.addCleanup(self._rmrf, os.path.join(self.test_dir, 'locale'))

    def test_command_help(self):
        old_stdout, old_stderr = sys.stdout, sys.stderr
        sys.stdout, sys.stderr = StringIO(), StringIO()
        try:
            # `call_command` bypasses the parser; by calling
            # `execute_from_command_line` with the help subcommand we
            # ensure that there are no issues with the parser itself.
            execute_from_command_line(['django-admin', 'help', 'compilemessages'])
        finally:
            sys.stdout, sys.stderr = old_stdout, old_stderr

    def test_one_locale_excluded(self):
        call_command('compilemessages', exclude=['it'], stdout=StringIO())
        self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
Loading