diff options
Diffstat (limited to 'famille.py')
| -rw-r--r-- | famille.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -52,7 +52,8 @@ def query_db(query, args=(), one=False): @app.before_request def before_request(): - conn = sqlite3.connect(app.config['DATABASE']) + conn = sqlite3.connect(app.config['DATABASE'], + detect_types=sqlite3.PARSE_DECLTYPES) conn.row_factory = sqlite3.Row g.db = conn |
