diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-03-29 22:28:13 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-03-29 22:28:13 +0000 |
| commit | 587abaa95cbf598c6cb7d115994350bffe05d613 (patch) | |
| tree | 176a651a0adfa146218b7fa23c4432951a14985e | |
| parent | c1a73d80da65694319d803160b5e400e11318213 (diff) | |
Removed stray tab in django.contrib.humanize template tag
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/humanize/templatetags/humanize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/humanize/templatetags/humanize.py b/django/contrib/humanize/templatetags/humanize.py index a399e7eef1..a16cbcc9bb 100644 --- a/django/contrib/humanize/templatetags/humanize.py +++ b/django/contrib/humanize/templatetags/humanize.py @@ -43,7 +43,7 @@ def intword(value): if value < 1000000: return value if value < 1000000000: - new_value = value / 1000000.0 + new_value = value / 1000000.0 return ngettext('%(value).1f million', '%(value).1f million', new_value) % {'value': new_value} if value < 1000000000000: new_value = value / 1000000000.0 |
