diff --git a/config.py b/config.py
index feb6992343542871c112e60f486c635ca3ef30bb..103d96418b220d23f960e63f565fbfcce105f1f6 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):