# HG changeset patch # User Tero Marttila # Date 1234739421 -7200 # Node ID add1c1f7831c536a99b0430e23c9133c044be97b # Parent 2e93ba90fb92f6b43abd1269d9e0e94359a178c4 make TemplateError a normal Exception, not a http.ResponseError diff -r 2e93ba90fb92 -r add1c1f7831c 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 """