summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'index.py')
-rwxr-xr-xindex.py4
1 files changed, 3 insertions, 1 deletions
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()