diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-10-15 11:46:08 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-10-15 11:46:08 -0300 |
commit | a0d827d28e7aba2e55be9b1cbf04292e6c385c34 (patch) | |
tree | 1de9b1dfe51d92136bdaaeaddc547e316f11ed5c /src/leap/bitmask/util | |
parent | d3d8c478101006b9874bfdffd2f7027d3a598629 (diff) |
Fix pep8 violations.
Diffstat (limited to 'src/leap/bitmask/util')
-rw-r--r-- | src/leap/bitmask/util/leap_log_handler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/bitmask/util/leap_log_handler.py b/src/leap/bitmask/util/leap_log_handler.py index 262f2f65..1ab62331 100644 --- a/src/leap/bitmask/util/leap_log_handler.py +++ b/src/leap/bitmask/util/leap_log_handler.py @@ -52,7 +52,8 @@ class LogHandler(logging.Handler): :param logging_level: the debug level to define the color. :type logging_level: str. """ - log_format = '%(asctime)s - %(name)s:%(funcName)s:L#%(lineno)s - %(levelname)s - %(message)s' + log_format = ('%(asctime)s - %(name)s:%(funcName)s:L#%(lineno)s ' + '- %(levelname)s - %(message)s') formatter = logging.Formatter(log_format) return formatter |