# HG changeset patch # User Brian Neal # Date 1377978603 18000 # Node ID a8dc08cc5db40db931820a0d1f4f2aa7d0d7f4c6 # Parent a03e0254350b5bc006aa9a2c35577ce8964b26fc Remove unused import. diff -r a03e0254350b -r a8dc08cc5db4 antispam/views.py --- a/antispam/views.py Sun Aug 25 12:44:55 2013 -0500 +++ b/antispam/views.py Sat Aug 31 14:50:03 2013 -0500 @@ -3,8 +3,6 @@ from django.shortcuts import render_to_response from django.template import RequestContext -import bio.models - def suspended(request): """This view checks the user's status for suspension and displays an @@ -14,5 +12,5 @@ return render_to_response('antispam/suspended.html', { 'is_active': is_active, - }, + }, context_instance = RequestContext(request))