From 4eeaee4c16aee4c951e2ca9bb59029f3bf5a7513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Mon, 8 Aug 2022 09:06:45 +0200 Subject: [PATCH] support python 3.6 (and possibly older) --- tests/tsa_server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tsa_server.py b/tests/tsa_server.py index e08ef85..a1c3b39 100644 --- a/tests/tsa_server.py +++ b/tests/tsa_server.py @@ -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")