diff options
| author | Tom Christie | 2011-06-07 14:12:02 +0100 | 
|---|---|---|
| committer | Tom Christie | 2011-06-07 14:12:02 +0100 | 
| commit | 44dfa05397128d730e825b30af7064e40851c8b8 (patch) | |
| tree | 1b1c8ce319dcf30e99e705530bfa09ea1c9c638a /djangorestframework/views.py | |
| parent | a8980892c47677f159499f7711cf812907dfaa47 (diff) | |
| download | django-rest-framework-44dfa05397128d730e825b30af7064e40851c8b8.tar.bz2 | |
Typo.  Authenticat<i>on
Diffstat (limited to 'djangorestframework/views.py')
| -rw-r--r-- | djangorestframework/views.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/views.py b/djangorestframework/views.py index 5b3cc855..6f2ab5b7 100644 --- a/djangorestframework/views.py +++ b/djangorestframework/views.py @@ -56,8 +56,8 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView):      """      List of all authenticating methods to attempt.      """ -    authentication = ( authentication.UserLoggedInAuthenticaton, -                       authentication.BasicAuthenticaton ) +    authentication = ( authentication.UserLoggedInAuthentication, +                       authentication.BasicAuthentication )      """      List of all permissions that must be checked.  | 
