From 03f4046e61c521b66fa3133e00a0d3c64acf850c Mon Sep 17 00:00:00 2001
From: aaron <devnull@localhost>
Date: Fri, 16 Jan 2009 03:44:39 +0100
Subject: [PATCH] [svn r8161] randSent is unnecessary and causing problems

---
 troggle/expo/views_other.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/troggle/expo/views_other.py b/troggle/expo/views_other.py
index 88a855912..6ff16739d 100644
--- a/troggle/expo/views_other.py
+++ b/troggle/expo/views_other.py
@@ -4,7 +4,7 @@ import troggle.settings as settings
 from django import forms
 from django.db.models import Q
 import re
-import randSent
+#import randSent (it's not ready yet)
 
 def stats(request):
     statsDict={}
@@ -14,6 +14,6 @@ def stats(request):
     statsDict['logbookEntryCount'] = int(LogbookEntry.objects.count())
     return render_to_response('statistics.html', statsDict)
 
-def frontPage(request):
+#def frontPage(request):
     
-    return render_to_response('index.html', {'randSent':randSent.randomLogbookSentence(),'settings':settings})
\ No newline at end of file
+#    return render_to_response('index.html', {'randSent':randSent.randomLogbookSentence(),'settings':settings})
\ No newline at end of file