diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2012-02-17 20:23:42 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2012-02-17 20:23:42 +0000 |
| commit | c1bdfd6f6fff0844c17853972358a2300f6aac23 (patch) | |
| tree | 7c1e524d2a488b7720fa42a1b983edb3366b39ea /docs | |
| parent | 2a1a0f47bb53ef3e1fb1a9c222fed22d8361a1b1 (diff) | |
Changed various non-breaking space characters from [17478] to use the code representation rather than the actual character, which is too hard to overlook because it just looks like a space
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17542 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/i18n/formatting.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/i18n/formatting.txt b/docs/topics/i18n/formatting.txt index fa7da5d38e..a459b95042 100644 --- a/docs/topics/i18n/formatting.txt +++ b/docs/topics/i18n/formatting.txt @@ -178,7 +178,7 @@ To customize the English formats, a structure like this would be needed:: where :file:`formats.py` contains custom format definitions. For example:: - THOUSAND_SEPARATOR = u' ' + THOUSAND_SEPARATOR = u'\xa0' to use a non-breaking space (Unicode ``00A0``) as a thousand separator, instead of the default for English, a comma. |
