From 401be08fe95f82786541c9b485b2edff3b029b8a Mon Sep 17 00:00:00 2001 From: David Edwards Date: Sun, 10 Dec 2023 14:58:16 -0700 Subject: [PATCH] fixed typo on variable. --- wo/cli/plugins/site_create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/cli/plugins/site_create.py b/wo/cli/plugins/site_create.py index 1bd782c..6537134 100644 --- a/wo/cli/plugins/site_create.py +++ b/wo/cli/plugins/site_create.py @@ -127,7 +127,7 @@ class WOSiteCreateController(CementBaseController): proxyinfo = proxyinfo.split(':') host = proxyinfo[0].strip() port = '80' if len(proxyinfo) < 2 else proxyinfo[1].strip() - elif stype is None and not pargs.proxy and not pargs.alias and not pargs.subsiteofof: + elif stype is None and not pargs.proxy and not pargs.alias and not pargs.subsiteof: stype, cache = 'html', 'basic' elif stype is None and pargs.alias: stype, cache = 'alias', ''