Skip to content

Commit

Permalink
Removed stray tab in django.contrib.humanize template tag
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Mar 29, 2007
1 parent c1a73d8 commit 587abaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/humanize/templatetags/humanize.py
Expand Up @@ -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
Expand Down

0 comments on commit 587abaa

Please sign in to comment.