diff --git a/bin/system_imports.py b/bin/system_imports.py index 58e3fba..0e8761f 100755 --- a/bin/system_imports.py +++ b/bin/system_imports.py @@ -44,4 +44,7 @@ if __name__ == '__main__': with open(path, "rb") as fd: cursor.copy_from(fd, table); + # If we don't commit the data does not actually get copied + db.conn.commit() + print("Done")