From 3b61222e5aff4e6558a792b58f6bdbe3999f858e Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 23 Jan 2019 18:08:41 -0500 Subject: [PATCH] pylint --- lbrynet/extras/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lbrynet/extras/cli.py b/lbrynet/extras/cli.py index a63742a7c..bdbda0dc7 100644 --- a/lbrynet/extras/cli.py +++ b/lbrynet/extras/cli.py @@ -195,7 +195,9 @@ def main(argv=None): args.start_parser.print_help() return 0 default_formatter = logging.Formatter("%(asctime)s %(levelname)-8s %(name)s:%(lineno)d: %(message)s") - file_handler = logging.handlers.RotatingFileHandler(conf.log_file_path, maxBytes = 2097152, backupCount = 5) + file_handler = logging.handlers.RotatingFileHandler( + conf.log_file_path, maxBytes=2097152, backupCount=5 + ) file_handler.setFormatter(default_formatter) log.addHandler(file_handler)