From baeff58539de3407bbf0d376d84effe83331a43d Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 18 Jan 2019 16:28:09 +0000 Subject: [PATCH] Fix incorrect indentation level in Logging.py --- src/Logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logging.py b/src/Logging.py index 8de57d83..879b8330 100644 --- a/src/Logging.py +++ b/src/Logging.py @@ -67,4 +67,4 @@ class Log(object): def critical(self, message: str, params: typing.List, **kwargs): self._log(message, params, logging.CRITICAL, kwargs) def _log(self, message: str, params: typing.List, level: int, kwargs: dict): - self.logger.log(level, message, *params, **kwargs) + self.logger.log(level, message, *params, **kwargs)