aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/compat.py
diff options
context:
space:
mode:
authorTom Christie2011-06-25 14:58:26 +0100
committerTom Christie2011-06-25 14:58:26 +0100
commitd2b5ea107ef05e4f80af337e7df5312050c0e0cd (patch)
tree7f3e9ec87b285bfc4c31204214f4aa33d2ef5b6a /djangorestframework/compat.py
parentd3557bdcd0f4d6a7106267ea0f8a3024f21fd9f9 (diff)
downloaddjango-rest-framework-d2b5ea107ef05e4f80af337e7df5312050c0e0cd.tar.bz2
Typo in url
Diffstat (limited to 'djangorestframework/compat.py')
-rw-r--r--djangorestframework/compat.py2
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)