don't .strip() tls cert
This commit is contained in:
parent
e2ec8afbea
commit
b18586ba51
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ class Server(object):
|
|||
|
||||
cert_filename = self.bot.config["tls-certificate"]
|
||||
with open(cert_filename) as cert_file:
|
||||
cert = cert_file.read().strip()
|
||||
cert = cert_file.read()
|
||||
|
||||
event["response"].content_type = ap_utils.LD_TYPE
|
||||
event["response"].write_json({
|
||||
|
|
Loading…
Reference in a new issue