Fix typos

This commit is contained in:
Christian Clauss 2021-10-12 10:19:48 +02:00
parent 4f301f4e03
commit a5ed291e65
5 changed files with 5 additions and 5 deletions

View file

@ -75,7 +75,7 @@ def httpd(request):
def do_POST(self):
if self.path == '/login-action':
self.send_response(200)
payload = b'login successfull\n'
payload = b'login successful\n'
self.send_header('Content-Type', 'text/plain;charset=utf-8')
self.send_header('Content-Length', len(payload))
self.end_headers()