From 43a8d4020ed1048b17114be82a0ba1c6abf02cda Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Tue, 1 May 2018 14:07:33 +0200 Subject: [PATCH] test --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index e465fa9..9c4da16 100644 --- a/app.py +++ b/app.py @@ -73,7 +73,9 @@ def contacts(): ''' Show alls contacts ''' + print(app.config['SQLALCHEMY_DATABASE_URI']) contacts = Contact.query.order_by(Contact.name).all() + print(len(contacts)) return render_template('web/contacts.html', contacts=contacts)