From e7152934f696252c55ce8a2cb747660607a8aed4 Mon Sep 17 00:00:00 2001 From: Douglas Mennella Date: Sun, 30 May 2021 10:22:19 +0900 Subject: [PATCH] Turn off debugging to avoid issues when run with poetry without an explicit path. --- csv_reconcile/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csv_reconcile/__init__.py b/csv_reconcile/__init__.py index dc6ff2a..46246db 100644 --- a/csv_reconcile/__init__.py +++ b/csv_reconcile/__init__.py @@ -197,4 +197,4 @@ def main(config, scorerOption, init_db, csvfile, idcol, namecol): from werkzeug.serving import WSGIRequestHandler WSGIRequestHandler.protocol_version = "HTTP/1.1" - app.run() + app.run(debug=False)