diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-07 11:32:39 -0500 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-07 11:32:39 -0500 |
| commit | 476b07641c35728d260cadacc2735dbba6ec98c9 (patch) | |
| tree | 2ab5cbb7b5d15f8e95898f477ed0605292b94173 | |
| parent | 7bb627936034c1b9500a8d250cce75b30f980b23 (diff) | |
Oops :(
| -rw-r--r-- | django/test/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/client.py b/django/test/client.py index 936a92e4cd..11921ccf03 100644 --- a/django/test/client.py +++ b/django/test/client.py @@ -336,7 +336,7 @@ class RequestFactory(object): query_string = force_bytes(parsed[4]) # WSGI requires latin-1 encoded strings. See get_path_info(). if six.PY3: - query_string = query_string.decode('iso-8859-1')2053020530 + query_string = query_string.decode('iso-8859-1') r['QUERY_STRING'] = query_string return self.request(**r) |
