mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2024-11-08 07:49:22 +01:00
Change to raw string literal
To fix: /webserver.py:17: SyntaxWarning: invalid escape sequence '\d' elif re.match("/status/(\d+)", self.path): /webserver.py:18: SyntaxWarning: invalid escape sequence '\d' result = re.match("/status/(\d+)", self.path)
This commit is contained in:
parent
1e55d9883f
commit
12d639dad7
@ -14,8 +14,8 @@ class Handler(http.server.SimpleHTTPRequestHandler):
|
||||
response_body += self.headers.as_string()
|
||||
elif self.path == "/port":
|
||||
response_body += f"answer from port {PORT}\n"
|
||||
elif re.match("/status/(\d+)", self.path):
|
||||
result = re.match("/status/(\d+)", self.path)
|
||||
elif re.match(r"/status/(\d+)", self.path):
|
||||
result = re.match(r"/status/(\d+)", self.path)
|
||||
response_code = int(result.group(1))
|
||||
response_body += f"answer with response code {response_code}\n"
|
||||
elif self.path == "/":
|
||||
|
Loading…
Reference in New Issue
Block a user