From 8d7487d22a25a858c646a9af560a4b997df437fa Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 22 Aug 2018 08:37:03 +0100 Subject: [PATCH] blog: Allow dots in tags Signed-off-by: Michael Tremer --- src/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/__init__.py b/src/web/__init__.py index a3543b6a..1f5fb492 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -119,7 +119,7 @@ class Application(tornado.web.Application): (r"/authors/(\w+)", blog.AuthorHandler), (r"/post/(.*)", blog.PostHandler), (r"/search", blog.SearchHandler), - (r"/tags/([0-9a-z\-]+)", blog.TagHandler), + (r"/tags/([0-9a-z\-\.]+)", blog.TagHandler), (r"/years/([0-9]+)", blog.YearHandler), # RSS Feed -- 2.47.3