dockersetup: fix error when printing URL with https enabled

Copy-paste error.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2019-07-23 10:36:37 +12:00
parent c427f82bfd
commit bc6984b582

View File

@ -750,7 +750,7 @@ if return_code != 0:
if https_port and not args.no_https:
protocol = 'https'
port = https_port
defport == '443'
defport = '443'
else:
protocol = 'http'
port = http_port