From 21bfe5b98329be348a15cfd97b93f21f7aef26c6 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Sun, 1 Nov 2015 22:48:58 -0800 Subject: [PATCH] Remove stray variable --- letsencrypt/tests/cli_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/letsencrypt/tests/cli_test.py b/letsencrypt/tests/cli_test.py index e38448249..7f8fbb351 100644 --- a/letsencrypt/tests/cli_test.py +++ b/letsencrypt/tests/cli_test.py @@ -68,7 +68,6 @@ class CLITest(unittest.TestCase): "Run a help command, and return the help string for scrutiny" output = StringIO.StringIO() with mock.patch('letsencrypt.cli.sys.stdout', new=output): - plugins = disco.PluginsRegistry.find_all() self.assertRaises(SystemExit, self._call_stdout, args) out = output.getvalue() return out