From bc6984b5824f3f14eff794ef44d0f3e3249e006c Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 23 Jul 2019 10:36:37 +1200 Subject: [PATCH] dockersetup: fix error when printing URL with https enabled Copy-paste error. Signed-off-by: Paul Eggleton --- dockersetup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockersetup.py b/dockersetup.py index 2120d37..c5f305e 100755 --- a/dockersetup.py +++ b/dockersetup.py @@ -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