From 79e137c8bd16ee79a9e47e05b1233e4d09caf1cd Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 30 Jan 2014 16:44:04 -0500 Subject: [PATCH] Fix pathological po growth --- i18n/extract.py | 1 + 1 file changed, 1 insertion(+) diff --git a/i18n/extract.py b/i18n/extract.py index 1e9acdc110..25fe4bf353 100755 --- a/i18n/extract.py +++ b/i18n/extract.py @@ -40,6 +40,7 @@ def main(): logging.basicConfig(stream=sys.stdout, level=logging.INFO) create_dir_if_necessary(LOCALE_DIR) source_msgs_dir = CONFIGURATION.source_messages_dir + remove_file(source_msgs_dir.joinpath('django.po')) makemessages = "django-admin.py makemessages -l en" ignores = " ".join('--ignore="{}/*"'.format(d) for d in CONFIGURATION.ignore_dirs)