commit 53a1bf8b0c56501d9ba4037d3bc1548573ce4dd9 Author: Matt Traudt sirmatt@ksu.edu Date: Thu Jul 19 13:55:09 2018 -0400
Fix line length --- sbws/util/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sbws/util/config.py b/sbws/util/config.py index f7389ef..94b5d09 100644 --- a/sbws/util/config.py +++ b/sbws/util/config.py @@ -132,7 +132,8 @@ def configure_logging(args, conf): # And the forth is the number of backups to keep num_backups = conf.getint('logging', 'to_file_num_backups') # Now store those things as a string in the config. So dumb. - conf['handler_to_file']['args'] = str((fname, mode, max_bytes, num_backups)) + conf['handler_to_file']['args'] = \ + str((fname, mode, max_bytes, num_backups)) # Set some stuff that needs config parser's interpolation conf['formatter_to_file']['format'] = conf['logging']['to_file_format'] conf['formatter_to_stdout']['format'] = conf['logging']['to_stdout_format']