aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__init__.py
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2020-09-24 09:25:20 +0000
committerGravatar Matteo Bertucci <[email protected]>2020-09-24 09:25:20 +0000
commit497f35597b28ba70e86ae99d2b938af5188c9bf0 (patch)
treee3d4c385aaf565c176db052e4d7ae9642631e538 /bot/__init__.py
parent8bitify: Use NEAREST to resize avatar. (diff)
parentMerge pull request #456 from Anubhav1603/update_dpy (diff)
Merge branch 'master' into update-pillow
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