﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21488	django-admin.py makemessages with commas separeted multiple locales doesn't work	Romain Beylerian	nobody	"Hello everyone,

The Django 1.6 [https://docs.djangoproject.com/en/1.6/ref/django-admin/#django-admin-makemessages documentation] says that we can use the command `django-admin.py makemessages` with commas separated locales to specify multiple locales.

With the command `django-admin.py makemessages -l en,fr`, I expected Django to create two folders (`en` and `fr`) in my locale directory, howerver only one folder is created with the name `en,fr`.

If I repeat several times the `-l` option, it works. Here is an example:

{{{
#!bash
$ django-admin.py makemessages -l en,fr
processing locale en,fr

$ django-admin.py makemessages -l en -l fr
processing locale en
processing locale fr
}}}

"	Bug	closed	Internationalization	1.6	Release blocker	fixed			Accepted	1	0	0	0	0	0
