summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xindex.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.py b/index.py
index e72914a..27a5cf3 100755
--- a/index.py
+++ b/index.py
@@ -4,11 +4,11 @@ from web import template, form, application, ctx
from socket import gethostbyaddr
urls = (
- '/', 'index',
- '/neu.*', 'new',
- '/new.*', 'new',
- '/help/spam.*', 'spam',
- '/help/unsubscribe\.([a-z]+).*', 'unsubscribe',
+ r'/', 'index',
+ r'/neu.*', 'new',
+ r'/new.*', 'new',
+ r'/help/spam.*', 'spam',
+ r'/help/unsubscribe\.([a-z]+).*', 'unsubscribe',
)
render = template.render('templates/', base='layout');