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:
authorBrad Warren <bmw@users.noreply.github.com>2017-05-05 02:35:37 +0300
committerGitHub <noreply@github.com>2017-05-05 02:35:37 +0300
commit0db668f67be69ac5407c823fa15d017ea29cca71 (patch)
treef8bd4a03d1fc0d66cbaa96eed3bc73c8ff305cfe
parent4d0cf8000ae14f6662e52fda14eb390474cab6e8 (diff)
remove unnecessary closes causing logging problems (#4616)
-rw-r--r--certbot/tests/main_test.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/certbot/tests/main_test.py b/certbot/tests/main_test.py
index 23cff7edd..7c2016178 100644
--- a/certbot/tests/main_test.py
+++ b/certbot/tests/main_test.py
@@ -410,8 +410,6 @@ class MainTest(test_util.TempDirTestCase): # pylint: disable=too-many-public-me
finally:
output = toy_out.getvalue() or toy_err.getvalue()
self.assertTrue("certbot" in output, "Output is {0}".format(output))
- toy_out.close()
- toy_err.close()
def _cli_missing_flag(self, args, message):
"Ensure that a particular error raises a missing cli flag error containing message"