diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-09-12 23:16:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:18 +0100 |
commit | 10fcd6d820c9d6111acb3a79b20e13f12b934a13 (patch) | |
tree | acb9cce5e8a47af7f32ab6092d1a83f8c0fabf3d /ishtar_common/models_imports.py | |
parent | 8fc0a1f604eaa4a64622d622f5801beb3a286f5a (diff) | |
download | Ishtar-10fcd6d820c9d6111acb3a79b20e13f12b934a13.tar.bz2 Ishtar-10fcd6d820c9d6111acb3a79b20e13f12b934a13.zip |
Import GIS: default to 0 skip lines (for geopackage and SHP it must be 0)
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r-- | ishtar_common/models_imports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index 1d987c35c..087710fa7 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -1169,7 +1169,7 @@ class Import(models.Model): skip_lines = models.IntegerField( _("Skip lines"), default=1, - help_text=_("Number of header lines in your file (can be 0)."), + help_text=_("Number of header lines in your file (can be 0 and should be 0 for geopackage or Shapefile)."), ) error_file = models.FileField( _("Error file"), |