From af8fffff96a547020de5c24e9d567d07120b99ac Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Wed, 13 Mar 2019 11:59:28 +0100 Subject: [PATCH] another fix --- wo/cli/plugins/site.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wo/cli/plugins/site.py b/wo/cli/plugins/site.py index 8e4efe0..2ae239b 100644 --- a/wo/cli/plugins/site.py +++ b/wo/cli/plugins/site.py @@ -882,7 +882,7 @@ class WOSiteUpdateController(CementBaseController): return 0 if ((stype == 'php' and - oldsitetype not in ['html', 'proxy', 'php73']) or + oldsitetype not in ['html', 'proxy', 'php73']) or (stype == 'mysql' and oldsitetype not in ['html', 'php', 'proxy', 'php73']) or (stype == 'wp' and oldsitetype not in ['html', 'php', 'mysql', @@ -1196,8 +1196,8 @@ class WOSiteUpdateController(CementBaseController): return 1 if 'proxy' in data.keys() and data['proxy']: - updateSiteInfo(self, wo_domain, stype = stype, cache = cache, - ssl = True if check_site.is_ssl else False) + updateSiteInfo(self, wo_domain, stype=stype, cache=cache, + ssl=True if check_site.is_ssl else False) Log.info(self, "Successfully updated site" " http://{0}".format(wo_domain)) return 0