Another trivial patch related to the last commit

This commit is contained in:
Miroslav Stampar
2019-08-13 12:29:18 +02:00
parent fd4becf389
commit 412301bb18
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ class ReqHandler(_BaseHTTPServer.BaseHTTPRequestHandler):
self.send_header(HTTP_HEADER.CONNECTION, "close")
if content is not None:
for match in re.finditer(b"<!(\w+)!>", content):
for match in re.finditer(b"<!(\\w+)!>", content):
name = match.group(1)
_ = getattr(self, "_%s" % name.lower(), None)
if _: