summaryrefslogtreecommitdiff
path: root/jimbrella
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2021-10-31 20:56:03 +0800
committerFrederick Yin <fkfd@fkfd.me>2021-10-31 20:56:03 +0800
commitacdaf5a2dfe7a61fe00168ae96dcc750e9065a73 (patch)
tree5fa3f54e1f911d6cb417e93f8597245cb539c8f3 /jimbrella
parent854681fcf76e6982e323628e7031c5fc0ad4f179 (diff)
Compat: remove encoding from logging config
Diffstat (limited to 'jimbrella')
-rw-r--r--jimbrella/web.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jimbrella/web.py b/jimbrella/web.py
index dda2d9f..8a625ac 100644
--- a/jimbrella/web.py
+++ b/jimbrella/web.py
@@ -5,7 +5,7 @@ from .auth import bp as auth_bp
from .config import *
# this logger is shared across modules
-logging.basicConfig(filename=LOG_PATH, encoding="utf-8", level=logging.DEBUG)
+logging.basicConfig(filename=LOG_PATH, level=logging.DEBUG)
app = Flask("jimbrella")
app.secret_key = FLASK_SECRET_KEY