diff options
| author | Daniel Kontsek | 2014-03-22 10:22:08 +0100 | 
|---|---|---|
| committer | Daniel Kontsek | 2014-03-22 10:32:59 +0100 | 
| commit | 3b71be725a727be802eb2e43d4d155b734320023 (patch) | |
| tree | a0d6527407df351f819f4e26efc064f7811970dd /rest_framework/request.py | |
| parent | b04cd570504df0415d5f52b6e5cee490f9219cf2 (diff) | |
| download | django-rest-framework-3b71be725a727be802eb2e43d4d155b734320023.tar.bz2 | |
Fixed encoding parameter in QueryDict
Diffstat (limited to 'rest_framework/request.py')
| -rw-r--r-- | rest_framework/request.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/rest_framework/request.py b/rest_framework/request.py index ca70b49e..40467c03 100644 --- a/rest_framework/request.py +++ b/rest_framework/request.py @@ -346,7 +346,7 @@ class Request(object):          media_type = self.content_type          if stream is None or media_type is None: -            empty_data = QueryDict('', self._request._encoding) +            empty_data = QueryDict('', encoding=self._request._encoding)              empty_files = MultiValueDict()              return (empty_data, empty_files) @@ -362,7 +362,7 @@ class Request(object):              # re-raise.  Ensures we don't simply repeat the error when              # attempting to render the browsable renderer response, or when              # logging the request or similar. -            self._data = QueryDict('', self._request._encoding) +            self._data = QueryDict('', encoding=self._request._encoding)              self._files = MultiValueDict()              raise | 
