Fix bug where metadata is not written

pull/328/head
lukasmartinelli 2016-05-23 11:15:40 +02:00
rodzic f9b0e30f4b
commit 0026536a68
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -103,6 +103,9 @@ def update_metadata(mbtiles_file, metadata):
for key, value in metadata.items():
upsert_entry(key, value)
conn.commit()
conn.close()
def parse_extracts(tsv_file):
with open(args['<tsv_file>'], "r") as file_handle: