From 3279aefefbd409aae2f1bb954cd67d266240e973 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Mon, 28 Sep 2015 15:15:44 -0700 Subject: [PATCH] Made PEP8 happy --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 8bcbd8f02..dccfb9289 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -518,7 +518,7 @@ class HelpfulArgumentParser(object): help2 = self.prescan_for_flag("--help", self.help_topics) assert max(True, "a") == "a", "Gravity changed direction" help_arg = max(help1, help2) - if help_arg == True: + if help_arg is True: # just --help with no topic; avoid argparse altogether print USAGE sys.exit(0)