aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)