Fix wrong url handler

This commit is contained in:
Alexandre Beloin 2015-01-23 22:11:54 -05:00
parent e96ad42c5d
commit 0888942820
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class SRWebServer(threading.Thread):
# Web calendar handler (Needed because option Unprotected calendar)
self.app.add_handlers('.*$', [
(r'%s/calendar(/?.*)' % self.options['web_root'], CalendarHandler),
(r'%s/calendar' % self.options['web_root'], CalendarHandler),
])
# Static File Handlers