Fix typo spotted by pylint:
E1101:2095:LogFileHandler.handleError: Module 'logging' has no 'Filehandler'
member
---
lib/utils.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/utils.py b/lib/utils.py
index 6361621..4484085 100644
--- a/lib/utils.py
+++ b/lib/utils.py
@@ -2092,7 +2092,7 @@ class LogFileHandler(logging.FileHandler):
"""
try:
- logging.Filehandler.handleError(self, record)
+ logging.FileHandler.handleError(self, record)
except Exception:
try:
self.console.write("Cannot log message:\n%s\n" % self.format(record))
--
1.7.0.1