diff options
Diffstat (limited to 'views/thread.py')
-rw-r--r-- | views/thread.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/views/thread.py b/views/thread.py index 45e6cee..01785e4 100644 --- a/views/thread.py +++ b/views/thread.py @@ -1,7 +1,5 @@ -import logging import django.utils.simplejson as simplejson -from django import forms from django.http import HttpResponse, HttpResponseRedirect from django.template import RequestContext, loader from django.conf import settings @@ -14,11 +12,12 @@ from kittystore.kittysastore import KittySAStore from gsoc.models import Rating from lib.mockup import * from forms import * - -logger = logging.getLogger(__name__) +from gsoc.utils import log STORE = KittySAStore(settings.KITTYSTORE_URL) + + def thread_index (request, mlist_fqdn, threadid): ''' Displays all the email for a given thread identifier ''' list_name = mlist_fqdn.split('@')[0] |