From 15ab83ff1b57dab493ac366d866f3e26765599eb Mon Sep 17 00:00:00 2001 From: kinitrupti Date: Tue, 4 Oct 2016 12:01:02 +0530 Subject: Upgraded to django 1.9 --- commentingapp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commentingapp/views.py') diff --git a/commentingapp/views.py b/commentingapp/views.py index 66606b7..80f37e8 100644 --- a/commentingapp/views.py +++ b/commentingapp/views.py @@ -1,6 +1,6 @@ from django.shortcuts import render, render_to_response from django.contrib.auth.decorators import login_required -from django.core.context_processors import csrf +from django.template.context_processors import csrf from .models import Url, Comments from django.db.models import Q from collections import Counter -- cgit