Ticket #8491: 8491-r8468.diff
File 8491-r8468.diff, 642 bytes (added by , 16 years ago) |
---|
-
django/core/management/commands/compilemessages.py
12 12 basedirs = (os.path.join('conf', 'locale'), 'locale') 13 13 if os.environ.get('DJANGO_SETTINGS_MODULE'): 14 14 from django.conf import settings 15 basedirs += settings.LOCALE_PATHS15 basedirs += tuple(settings.LOCALE_PATHS) 16 16 17 17 # Gather existing directories. 18 18 basedirs = set(map(os.path.abspath, filter(os.path.isdir, basedirs)))