mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
support python 3.6 (and possibly older)
This commit is contained in:
parent
6da29943ea
commit
4eeaee4c16
@ -46,7 +46,8 @@ class RequestHandler(BaseHTTPRequestHandler):
|
|||||||
post_data = self.rfile.read(content_length)
|
post_data = self.rfile.read(content_length)
|
||||||
with open(REQUEST, mode="wb") as file:
|
with open(REQUEST, mode="wb") as file:
|
||||||
file.write(post_data)
|
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()
|
openssl.check_returncode()
|
||||||
self.send_response(200)
|
self.send_response(200)
|
||||||
self.send_header("Content-type", "application/timestamp-reply")
|
self.send_header("Content-type", "application/timestamp-reply")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user