why would we be getting the *filename* from security.private_key()?

This commit is contained in:
jesopo 2019-09-15 11:44:27 +01:00
parent 9a7e2fabda
commit 223c04b1a5

View file

@ -171,7 +171,7 @@ class Server(object):
event["response"].code = 404
def _private_key(self, id):
filename = security.private_key(self.bot.config["tls-certificate"])
filename = self.bot.config["tls-certificate"]
return ap_security.PrivateKey(filename, id)
def ap_inbox(self, event):