From 622240702a92ba05369594222be482179a6dc42a Mon Sep 17 00:00:00 2001 From: Reed La Botz Date: Sat, 21 Apr 2012 02:23:13 -0500 Subject: [PATCH] remove debuf --- server/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/app.py b/server/app.py index 6f32cca..7a032d7 100644 --- a/server/app.py +++ b/server/app.py @@ -7,9 +7,9 @@ app = Flask(__name__) -app.debug = True +#app.debug = True app.config['SQLALCHEMY_DATABASE_URI'] = os.environ.get('DATABASE_URL') -app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db' +#app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db' db = SQLAlchemy(app) class Color(db.Model):