fixed lint errors

This commit is contained in:
sirferl 2020-09-14 15:56:02 +02:00
parent 5bb0143da4
commit 9778eb7b25
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class EntrustIssuerPlugin(IssuerPlugin):
key_file = current_app.config.get("ENTRUST_API_KEY") key_file = current_app.config.get("ENTRUST_API_KEY")
user = current_app.config.get("ENTRUST_API_USER") user = current_app.config.get("ENTRUST_API_USER")
password = current_app.config.get("ENTRUST_API_PASS") password = current_app.config.get("ENTRUST_API_PASS")
self.session.cert = (cert_file_path, key_file_path) self.session.cert = (cert_file, key_file)
self.session.auth = (user, password) self.session.auth = (user, password)
self.session.hooks = dict(response=log_status_code) self.session.hooks = dict(response=log_status_code)
# self.session.config['keep_alive'] = False # self.session.config['keep_alive'] = False