diff options
| author | Tom Christie | 2011-12-29 13:31:12 +0000 |
|---|---|---|
| committer | Tom Christie | 2011-12-29 13:31:12 +0000 |
| commit | 07349597ab936dc9887caa70b5d7d2860c897b12 (patch) | |
| tree | db1fdb8934e4d8dc8d3afe8d1e9fd076e3a4e27d /djangorestframework/response.py | |
| parent | 1bdc5eacc6290c486796eb5ab8fa29092137dab6 (diff) | |
| download | django-rest-framework-07349597ab936dc9887caa70b5d7d2860c897b12.tar.bz2 | |
whitespace fixes
Diffstat (limited to 'djangorestframework/response.py')
| -rw-r--r-- | djangorestframework/response.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/djangorestframework/response.py b/djangorestframework/response.py index 311e0bb7..0090b070 100644 --- a/djangorestframework/response.py +++ b/djangorestframework/response.py @@ -1,8 +1,8 @@ """ -The :mod:`response` module provides Response classes you can use in your -views to return a certain HTTP response. Typically a response is *rendered* +The :mod:`response` module provides Response classes you can use in your +views to return a certain HTTP response. Typically a response is *rendered* into a HTTP response depending on what renderers are set on your view and -als depending on the accept header of the request. +als depending on the accept header of the request. """ from django.core.handlers.wsgi import STATUS_CODE_TEXT @@ -23,7 +23,7 @@ class Response(object): self.raw_content = content # content prior to filtering self.cleaned_content = content # content after filtering self.headers = headers or {} - + @property def status_text(self): """ |
