summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-11-25 22:01:28 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-11-25 22:01:28 +0100
commitaeb9c2027ecf75c29274e722fb8e90ddd0993b32 (patch)
tree60553e9dffdc8c8514f9d3063fe28e548c1b6943
parente1730d1150cb77f2c4660d155e137d4001bdee87 (diff)
downloadweb-aeb9c2027ecf75c29274e722fb8e90ddd0993b32.tar.gz
web-aeb9c2027ecf75c29274e722fb8e90ddd0993b32.tar.bz2
web-aeb9c2027ecf75c29274e722fb8e90ddd0993b32.zip
Get rid of old debug print stmt
-rwxr-xr-xindex.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/index.py b/index.py
index f36fd92..0ab9e1b 100755
--- a/index.py
+++ b/index.py
@@ -24,11 +24,10 @@ class Renderer:
output_encoding='utf-8')
def render (self, tpl):
- print tpl
try:
t = self.get_tpl(tpl)
except mako.exceptions.TopLevelLookupException, e:
- raise web.webapi.notfound(e)
+ raise web.notfound(e)
return partial(t.render, w = web, h = helper)