diff options
| author | Not Carl <carl@rkive.org> | 2012-04-28 14:58:11 -0400 |
|---|---|---|
| committer | Not Carl <carl@rkive.org> | 2012-04-28 14:58:11 -0400 |
| commit | 6b430b883f3cfdc8a8016c539dd590c9f7e211b1 (patch) | |
| tree | a9ed36919462fdd5347c23bcb9b3d0fa62ea6400 | |
| parent | a7829f33349f0778d52c35615465b11e42e573b4 (diff) | |
Whitespace formatting
| -rw-r--r-- | django/utils/text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/text.py b/django/utils/text.py index 42a2b50f16..606b15c0ce 100644 --- a/django/utils/text.py +++ b/django/utils/text.py @@ -271,7 +271,7 @@ def phone2numeric(phone): 'n': '6', 'o': '6', 'p': '7', 'q': '7', 'r': '7', 's': '7', 't': '8', 'u': '8', 'v': '8', 'w': '9', 'x': '9', 'y': '9', 'z': '9', } - return u''.join(char2number.get(c,c) for c in phone.lower()) + return u''.join(char2number.get(c, c) for c in phone.lower()) phone2numeric = allow_lazy(phone2numeric) # From http://www.xhaus.com/alan/python/httpcomp.html#gzip |
