summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
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()