Merge pull request #3997 from ThomasWaldmann/py37-1.1

remove loggerDict.clear() from tearDown method, fixes #3805
This commit is contained in:
TW 2018-07-29 13:54:40 +01:00 committed by GitHub
commit b951a2ee42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -279,8 +279,6 @@ class ArchiverTestCaseBase(BaseTestCase):
os.chdir(self._old_wd) os.chdir(self._old_wd)
# note: ignore_errors=True as workaround for issue #862 # note: ignore_errors=True as workaround for issue #862
shutil.rmtree(self.tmpdir, ignore_errors=True) shutil.rmtree(self.tmpdir, ignore_errors=True)
# destroy logging configuration
logging.Logger.manager.loggerDict.clear()
setup_logging() setup_logging()
def cmd(self, *args, **kw): def cmd(self, *args, **kw):