﻿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
16938	django.utils.formats.get_format skips values interpreted as false	Peter Bobov	nobody	"== Here ==
{{{#!python
    return _format_cache[cache_key] or getattr(settings, format_type)
}}}
it tries to evaluate `getattr` if `_format_cache[cache_key]` interprets as false.
Thereby if user sets some value in <LOCALE>/formats.py to the value interpreted by Python as `False`, then Django skips returning it.

=== For example, ===
if I set `<SOME_LOCALE>/formats.py`'s `THOUSAND_SEPARATOR` to `''` Django takes value from `django.conf.settings` instead of `formats.py`."	Bug	closed	Internationalization	1.3	Normal	fixed	utils get_format		Accepted	1	0	0	0	0	0
