diff options
author | Thomas André <thomas.andre@iggdrasil.net> | 2025-06-04 10:27:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-07-29 08:49:03 +0200 |
commit | edf13b44cc8f9d73b7be4574affe57faf5d07e6d (patch) | |
tree | 977fd4374bf6b82ecd3879e065fd7e3dc2f1c8da /ishtar_common/views.py | |
parent | efc285c4615227b7c8f6503dca716d3160e0af7f (diff) | |
download | Ishtar-edf13b44cc8f9d73b7be4574affe57faf5d07e6d.tar.bz2 Ishtar-edf13b44cc8f9d73b7be4574affe57faf5d07e6d.zip |
New version for the export: creation of Finds and Context records layers adapted to the data source and new automations
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index a6010dfa6..b765c8e37 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -873,8 +873,8 @@ def get_by_importer( if importer.export_format: data_type = importer.export_format dct["type"] = importer.export_format - print(data_type) - print(dct) + #print(data_type) # debugtest + #print(dct) # debugtest if data_type == "csv" or dct.get("type", "") == "csv": obj_name = importer.name elif data_type == "gpkg" or dct.get("type", "") == "gpkg": |