fix linting in the tls script'

This commit is contained in:
Samuel Attard 2018-06-20 17:12:09 +10:00
Родитель 0ca2496481
Коммит 436b124fc8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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()