Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Swartz <swartzcr@gmail.com>2017-11-28 01:50:06 +0300
committerBrad Warren <bmw@users.noreply.github.com>2017-11-28 01:50:06 +0300
commitf5ed771d4f884c2b2ca7df8cf973e633ae04be2b (patch)
treeb53b26e18725c7364ef0a2f20f4738da15cb1c95
parentcdd89998e3bb20d9337bbc3ef8d2d7fad9a43454 (diff)
change some instances of help to flag (#5248)
-rw-r--r--certbot/cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/certbot/cli.py b/certbot/cli.py
index 3a12f86c7..622462278 100644
--- a/certbot/cli.py
+++ b/certbot/cli.py
@@ -828,11 +828,11 @@ class HelpfulArgumentParser(object):
return dict([(t, t == chosen_topic) for t in self.help_topics])
def _add_all_groups(helpful):
- helpful.add_group("automation", description="Arguments for automating execution & other tweaks")
+ helpful.add_group("automation", description="Flags for automating execution & other tweaks")
helpful.add_group("security", description="Security parameters & server settings")
helpful.add_group("testing",
description="The following flags are meant for testing and integration purposes only.")
- helpful.add_group("paths", description="Arguments changing execution paths & servers")
+ helpful.add_group("paths", description="Flags for changing execution paths & servers")
helpful.add_group("manage",
description="Various subcommands and flags are available for managing your certificates:",
verbs=["certificates", "delete", "renew", "revoke", "update_symlinks"])