summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-11-26 01:09:35 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-11-26 01:09:35 +0100
commit69fa28031dc8e3c73fc6114552c2139e6dac6672 (patch)
treee8463b4d6d7b209ff5a0600394c3d97823db80a2 /index.py
parent54e99bd780bc46ef38a6840eb0ea5a0a8a73e1c9 (diff)
downloadweb-69fa28031dc8e3c73fc6114552c2139e6dac6672.tar.gz
web-69fa28031dc8e3c73fc6114552c2139e6dac6672.tar.bz2
web-69fa28031dc8e3c73fc6114552c2139e6dac6672.zip
Memory caching is of no use and just makes problems.
This reverts commit 54e99bd780bc46ef38a6840eb0ea5a0a8a73e1c9.
Diffstat (limited to 'index.py')
-rwxr-xr-xindex.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/index.py b/index.py
index c2b2a36..a6775f3 100755
--- a/index.py
+++ b/index.py
@@ -43,9 +43,7 @@ class Renderer:
return os.path.join("pages", tpl)
-urls = (
- "/(.*)", "Handler"
- )
+urls = ("/(.*)", "Handler")
app = web.application(urls, globals())
render = Renderer()