From 077a4a06217f25a4f451561ea72189f6de9d4c58 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Wed, 25 Sep 2019 23:12:56 +0200 Subject: [PATCH] Fix `--force` --- wo/cli/plugins/site.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wo/cli/plugins/site.py b/wo/cli/plugins/site.py index af4fdff..5c1fe78 100644 --- a/wo/cli/plugins/site.py +++ b/wo/cli/plugins/site.py @@ -892,7 +892,7 @@ class WOSiteUpdateController(CementBaseController): 'wildcard', 'clean', 'purge'), const='on', nargs='?')), (['--force'], - dict(help="force LetsEncrypt certificate issuance", + dict(help="force LetsEncrypt certificate issuance/renewal", action='store_true')), (['--dns'], dict(help="choose dns provider api for letsencrypt", @@ -910,9 +910,6 @@ class WOSiteUpdateController(CementBaseController): dict(help="update to proxy site", nargs='+')), (['--all'], dict(help="update all sites", action='store_true')), - (['--force'], - dict(help="force letsencrypt certificate renewal", - action='store_true')), ] @expose(help="Update site type or cache")