From 94038ec272cb1a234bc9bd97e102bb653fb3fca4 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Fri, 25 May 2018 12:47:52 -0500 Subject: [PATCH] Moved DEBUG=True to default configuration --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index feb6992..103d964 100644 --- a/config.py +++ b/config.py @@ -4,13 +4,13 @@ class Config(object): """ # Put any configurations here that are common across all environments + DEBUG = True class DevelopmentConfig(Config): """ Development configurations """ - DEBUG = True SQLALCHEMY_ECHO = True class ProductionConfig(Config): -- GitLab