1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Removed Python 2.3 compat code in translation framework.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel
2010-02-16 12:16:01 +00:00
parent 89df0432f2
commit 16942e178f
2 changed files with 2 additions and 29 deletions

View File

@@ -3,11 +3,6 @@ import sys
from optparse import make_option
from django.core.management.base import BaseCommand, CommandError
try:
set
except NameError:
from sets import Set as set # For Python 2.3
def compile_messages(locale=None):
basedirs = [os.path.join('conf', 'locale'), 'locale']
if os.environ.get('DJANGO_SETTINGS_MODULE'):