Skip to content

Commit

Permalink
Fix wrong indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dosas committed Dec 4, 2024
1 parent 0798d2c commit 3f61706
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def upload(report):
ctx = ssl.create_default_context()
ctx.load_cert_chain(certfile=config[':ssl_cert'], keyfile=config[':ssl_key'])
if config[':ssl_ca']:
ctx.load_verify_locations(cafile=config[':ssl_ca'])
ctx.load_verify_locations(cafile=config[':ssl_ca'])
connection = HTTPSConnection(config[':host'],
port=config[':port'], context=ctx)
else:
Expand Down

0 comments on commit 3f61706

Please sign in to comment.