Re: LOCALE_PATHS should have a check to make sure it's a list/tuple

2014-06-06 Thread Tim Graham
Sure, patches welcome. `django.conf.__init__` already has some "tuple_settings" logic which is looks like would probably work for this. On Friday, June 6, 2014 11:51:30 AM UTC-4, Tim Shaffer wrote: > > I'm playing around with 1.7b4 and I was trying to track down why my app > was not auto-reloadi

LOCALE_PATHS should have a check to make sure it's a list/tuple

2014-06-06 Thread Tim Shaffer
I'm playing around with 1.7b4 and I was trying to track down why my app was not auto-reloading when files were changed using the dev server. Turns out, it was an improperly configured LOCALE_PATHS setting. My LOCALE_PATHS was configured like this: LOCALE_PATHS = ( '/path/to/locale' ) At fi