changeset 689:a8dc08cc5db4

Remove unused import.
author Brian Neal <bgneal@gmail.com>
date Sat, 31 Aug 2013 14:50:03 -0500
parents a03e0254350b
children 988782c6ce6c
files antispam/views.py
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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))