aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__init__.py
diff options
context:
space:
mode:
authorGravatar Harold Karibiye <[email protected]>2020-09-28 03:37:32 +0100
committerGravatar GitHub <[email protected]>2020-09-28 03:37:32 +0100
commitaab900877e285aade1bc45966e9b029d5559f04e (patch)
treeaaaadb8f1f3a080604b15c728a7d17184d203e41 /bot/__init__.py
parentsync Pipfile and Pipfile.lock (diff)
parentPR #458 Deps: update Pillow to 7.2 (diff)
Merge branch 'master' into minesweeper-contribution
Diffstat (limited to 'bot/__init__.py')
-rw-r--r--bot/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__init__.py b/bot/__init__.py
index 6976e089..a9a0865e 100644
--- a/bot/__init__.py
+++ b/bot/__init__.py
@@ -37,7 +37,7 @@ os.makedirs(log_dir, exist_ok=True)
# File handler rotates logs every 5 MB
file_handler = logging.handlers.RotatingFileHandler(
- log_file, maxBytes=5*(2**20), backupCount=10)
+ log_file, maxBytes=5 * (2**20), backupCount=10)
file_handler.setLevel(logging.TRACE if Client.debug else logging.DEBUG)
# Console handler prints to terminal