From d2b5ea107ef05e4f80af337e7df5312050c0e0cd Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Sat, 25 Jun 2011 14:58:26 +0100 Subject: Typo in url --- djangorestframework/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'djangorestframework') 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) -- cgit v1.2.3