From 26978f7cac75f3c5b99062a67ad4a0a102ba5721 Mon Sep 17 00:00:00 2001 From: Vishvajit Pathak Date: Mon, 21 Nov 2016 17:16:47 +0530 Subject: [PATCH] removed whitespace before key --- flask/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/logging.py b/flask/logging.py index 16a7ef73..3f888a75 100644 --- a/flask/logging.py +++ b/flask/logging.py @@ -22,7 +22,7 @@ from .globals import _request_ctx_stack PROD_LOG_FORMAT = '[%(asctime)s] %(levelname)s in %(module)s: %(message)s' DEBUG_LOG_FORMAT = ( '-' * 80 + '\n' + - '%(levelname)s in %(module)s [%(pathname)s: %(lineno)d]:\n' + + '%(levelname)s in %(module)s [%(pathname)s:%(lineno)d]:\n' + '%(message)s\n' + '-' * 80 )