Remove stray variable

This commit is contained in:
Peter Eckersley 2015-11-01 22:48:58 -08:00
parent a5e815008e
commit 21bfe5b983

View file

@ -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