From ab5d4cb630bb718b5255ae32ad749fcda46419ed Mon Sep 17 00:00:00 2001 From: jonnylamb Date: Sat, 18 Aug 2007 18:25:48 +0000 Subject: [PATCH] * Switch off debugging output by default. It just eats up the terminal window. --- src/www/bongo/sundial/SundialPath.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/www/bongo/sundial/SundialPath.py b/src/www/bongo/sundial/SundialPath.py index 6fa489d..e52c4ae 100644 --- a/src/www/bongo/sundial/SundialPath.py +++ b/src/www/bongo/sundial/SundialPath.py @@ -100,11 +100,11 @@ class SundialPath(object): self.xml_input = et.XML(self.raw_input) # For debugging, print out headers_in, and the content. - print req.headers_in - try: - print self.raw_input - except: - pass + #print req.headers_in + #try: + # print self.raw_input + #except: + # pass ## Returns the handler for the request method. # @param self The object pointer.