From 54e99bd780bc46ef38a6840eb0ea5a0a8a73e1c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Thu, 26 Nov 2009 01:01:10 +0100 Subject: Use memory caching --- index.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'index.py') diff --git a/index.py b/index.py index a6775f3..c2b2a36 100755 --- a/index.py +++ b/index.py @@ -43,7 +43,9 @@ class Renderer: return os.path.join("pages", tpl) -urls = ("/(.*)", "Handler") +urls = ( + "/(.*)", "Handler" + ) app = web.application(urls, globals()) render = Renderer() -- cgit v1.2.3