Browse Source

Minor changes

devel
Heimbs 4 years ago
parent
commit
c8ab1e9eac
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      http-server

+ 1
- 1
http-server View File

@@ -31,7 +31,7 @@ class SimpleHandler(server.BaseHTTPRequestHandler):
msg = "Invalid number of Query Components! Two components needed."
else:
if query_components[0][0] != 'von' or query_components[1][0] != 'bis':
msg = "Invalid Query Components! First key has to be 'von', second key 'bis'."
msg = "Invalid Query Components! First key should be 'von', second key 'bis'."
self.wfile.write(msg.encode('utf-8'))
else:
try:

Loading…
Cancel
Save