support python 3.6 (and possibly older)

This commit is contained in:
Michał Trojnara 2022-08-08 09:06:45 +02:00
parent 6da29943ea
commit 4eeaee4c16

View File

@ -46,7 +46,8 @@ class RequestHandler(BaseHTTPRequestHandler):
post_data = self.rfile.read(content_length)
with open(REQUEST, mode="wb") as file:
file.write(post_data)
openssl = subprocess.run(DEFAULT_OPENSSL, check=True, text=True)
openssl = subprocess.run(DEFAULT_OPENSSL,
check=True, universal_newlines=True)
openssl.check_returncode()
self.send_response(200)
self.send_header("Content-type", "application/timestamp-reply")