aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/resource.py
diff options
context:
space:
mode:
authorTom Christie2011-04-11 15:09:52 +0100
committerTom Christie2011-04-11 15:09:52 +0100
commita1ed565081779e3f50e9f0ff280a813a46f3613d (patch)
tree3f38aaeb12dc2852b728a4992d2984a5cf432276 /djangorestframework/resource.py
parent29db0a60fb88686f721da75dc058222c922ffdeb (diff)
downloaddjango-rest-framework-a1ed565081779e3f50e9f0ff280a813a46f3613d.tar.bz2
Cleanup
Diffstat (limited to 'djangorestframework/resource.py')
-rw-r--r--djangorestframework/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/resource.py b/djangorestframework/resource.py
index 02c55663..1a02f8b5 100644
--- a/djangorestframework/resource.py
+++ b/djangorestframework/resource.py
@@ -39,7 +39,7 @@ class Resource(EmitterMixin, AuthMixin, RequestMixin, View):
parsers.MultipartParser )
# List of validators to validate, cleanup and type-ify the request content
- validators = (validators.FormValidator,)
+ validators = ( validators.FormValidator, )
# List of all authenticating methods to attempt.
authenticators = ( authenticators.UserLoggedInAuthenticator,