diff options
| author | Tom Christie | 2011-04-11 15:09:52 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-04-11 15:09:52 +0100 |
| commit | a1ed565081779e3f50e9f0ff280a813a46f3613d (patch) | |
| tree | 3f38aaeb12dc2852b728a4992d2984a5cf432276 /djangorestframework/resource.py | |
| parent | 29db0a60fb88686f721da75dc058222c922ffdeb (diff) | |
| download | django-rest-framework-a1ed565081779e3f50e9f0ff280a813a46f3613d.tar.bz2 | |
Cleanup
Diffstat (limited to 'djangorestframework/resource.py')
| -rw-r--r-- | djangorestframework/resource.py | 2 |
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, |
