1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-01-07 03:48:02 -05:00

Fix wrong url handler

This commit is contained in:
Alexandre Beloin 2015-01-23 22:11:54 -05:00
parent e96ad42c5d
commit 0888942820

View File

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