aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/request.py
diff options
context:
space:
mode:
authorTom Christie2011-04-11 13:22:54 +0100
committerTom Christie2011-04-11 13:22:54 +0100
commit941742593c50dcb0e1ca426621d107f12c9ee65c (patch)
tree5016b02d47850e2238be30d3301ae5f78575a9ab /djangorestframework/request.py
parent92b5a455da87c1d71d81903ea666daafb6b79725 (diff)
downloaddjango-rest-framework-941742593c50dcb0e1ca426621d107f12c9ee65c.tar.bz2
Remove last bits of ParserMixin
Diffstat (limited to 'djangorestframework/request.py')
-rw-r--r--djangorestframework/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/request.py b/djangorestframework/request.py
index 988c0592..71ff8c0b 100644
--- a/djangorestframework/request.py
+++ b/djangorestframework/request.py
@@ -9,7 +9,7 @@ from django.http.multipartparser import LimitBytes
from StringIO import StringIO
class RequestMixin(object):
- """Delegate class that supplements an HttpRequest object with additional behaviour."""
+ """Mixin behaviour to deal with requests."""
USE_FORM_OVERLOADING = True
METHOD_PARAM = "_method"