diff options
| author | Sébastien Piquemal | 2012-02-02 18:19:44 +0200 |
|---|---|---|
| committer | Sébastien Piquemal | 2012-02-02 18:19:44 +0200 |
| commit | 5bb6301b7f53e3815ab1a81a5fa38721dc95b113 (patch) | |
| tree | 27d53698a374ac62c4a3be41b23173775c92f207 /djangorestframework/request.py | |
| parent | 5f59d90645dfddc293bbbbc4ca9b4c3f3125b590 (diff) | |
| download | django-rest-framework-5bb6301b7f53e3815ab1a81a5fa38721dc95b113.tar.bz2 | |
Response as a subclass of HttpResponse - first draft, not quite there yet.
Diffstat (limited to 'djangorestframework/request.py')
| -rw-r--r-- | djangorestframework/request.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/djangorestframework/request.py b/djangorestframework/request.py index 1674167d..ee43857e 100644 --- a/djangorestframework/request.py +++ b/djangorestframework/request.py @@ -206,9 +206,9 @@ class Request(object): if parser.can_handle_request(content_type): return parser.parse(stream) - raise ErrorResponse(status.HTTP_415_UNSUPPORTED_MEDIA_TYPE, - {'error': 'Unsupported media type in request \'%s\'.' % - content_type}) + raise ErrorResponse(content={'error': + 'Unsupported media type in request \'%s\'.' % content_type}, + status=status.HTTP_415_UNSUPPORTED_MEDIA_TYPE) @property def _parsed_media_types(self): |
