fix linting in the tls script'

This commit is contained in:
Samuel Attard 2018-06-20 17:12:09 +10:00
parent 0ca2496481
commit 436b124fc8

View file

@ -21,8 +21,9 @@ def check_tls(verbose):
)
port = process.stdout.readline()
localhost_url = 'https://localhost:' + port
response = json.load(urllib2.urlopen('https://localhost:' + port, context=ctx))
response = json.load(urllib2.urlopen(localhost_url, context=ctx))
tls = response['protocol']
process.wait()