make TemplateError a normal Exception, not a http.ResponseError
authorTero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 01:10:21 +0200
changeset 70 add1c1f7831c
parent 69 2e93ba90fb92
child 71 0162c2b21dc5
make TemplateError a normal Exception, not a http.ResponseError
template.py
--- a/template.py	Mon Feb 16 01:09:58 2009 +0200
+++ b/template.py	Mon Feb 16 01:10:21 2009 +0200
@@ -18,7 +18,7 @@
 # template file extension
 TEMPLATE_EXT = "tmpl"
 
-class TemplateError (http.ResponseError) :
+class TemplateError (Exception) :
     """
         Raised by the template module functions
     """