diff options
| author | Mjumbe Wawatu Poe | 2012-09-07 14:23:53 -0400 |
|---|---|---|
| committer | Mjumbe Wawatu Poe | 2012-09-07 14:23:53 -0400 |
| commit | 3b1404bd7d37d8c60cf45071852f86eea8d4c68f (patch) | |
| tree | c7e12174dab6415cd0ce21d578d553d7cf627f5e /djangorestframework/tokenauth/models.py | |
| parent | 36cd91bbbe6bc0aeef9b1eb711415988f5c4e501 (diff) | |
| download | django-rest-framework-3b1404bd7d37d8c60cf45071852f86eea8d4c68f.tar.bz2 | |
Rename the default token class to "BasicToken"
Diffstat (limited to 'djangorestframework/tokenauth/models.py')
| -rw-r--r-- | djangorestframework/tokenauth/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/tokenauth/models.py b/djangorestframework/tokenauth/models.py index b5a9f7b9..81d98863 100644 --- a/djangorestframework/tokenauth/models.py +++ b/djangorestframework/tokenauth/models.py @@ -18,7 +18,7 @@ class BaseToken(models.Model): return super(BaseToken, self).save(*args, **kwargs) -class Token(BaseToken): +class BasicToken(BaseToken): """ The default authorization token model class. """ |
