This commit is contained in:
Peter Eckersley 2016-03-10 18:31:29 -08:00
parent 1ae8d344b0
commit 683bebd56c
3 changed files with 2 additions and 2 deletions

View file

@ -29,6 +29,7 @@ from letsencrypt import storage
from letsencrypt.display import ops as display_ops
from letsencrypt.plugins import disco as plugins_disco
# pylint: disable=too-many-lines
logger = logging.getLogger(__name__)

View file

@ -701,7 +701,7 @@ def main(cli_args=sys.argv[1:]):
# Maps verbs/subcommands to the functions that implement them
# In principle this should live in cli.HelpfulArgumentParser, but
# In principle this should live in cli.HelpfulArgumentParser, but
# due to issues with import cycles and testing, it lives here
VERBS = {"auth": obtain_cert, "certonly": obtain_cert,
"config_changes": config_changes, "everything": run,

View file

@ -8,7 +8,6 @@ import letsencrypt.errors as errors
from letsencrypt.display import util as display_util
CHOICES = [("First", "Description1"), ("Second", "Description2")]
TAGS = ["tag1", "tag2", "tag3"]
TAGS_CHOICES = [("1", "tag1"), ("2", "tag2"), ("3", "tag3")]