diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index db5cc26d..b25bc39f 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -212,6 +212,7 @@ def start_db_connection(): def query_db(query): cursor = conn_db.cursor() cursor.execute(query) + conn_db.commit() return cursor.fetchall() def start_udd_connection(): |