diff options
| author | Tom Christie | 2011-06-25 14:58:26 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-06-25 14:58:26 +0100 |
| commit | d2b5ea107ef05e4f80af337e7df5312050c0e0cd (patch) | |
| tree | 7f3e9ec87b285bfc4c31204214f4aa33d2ef5b6a /djangorestframework/compat.py | |
| parent | d3557bdcd0f4d6a7106267ea0f8a3024f21fd9f9 (diff) | |
| download | django-rest-framework-d2b5ea107ef05e4f80af337e7df5312050c0e0cd.tar.bz2 | |
Typo in url
Diffstat (limited to 'djangorestframework/compat.py')
| -rw-r--r-- | djangorestframework/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/compat.py b/djangorestframework/compat.py index f09b7cc3..827b4adf 100644 --- a/djangorestframework/compat.py +++ b/djangorestframework/compat.py @@ -69,7 +69,7 @@ try: from django.views.generic import View if not hasattr(View, 'head'): # First implementation of Django class-based views did not include head method - # in base View class - https://code.djangoproject.com/ticket/15688 + # in base View class - https://code.djangoproject.com/ticket/15668 class ViewPlusHead(View): def head(self, request, *args, **kwargs): return self.get(request, *args, **kwargs) |
