From 369fe57ba0ada754e80ab71f418191909b6d694e Mon Sep 17 00:00:00 2001 From: Per von Zweigbergk Date: Tue, 5 Sep 2023 10:37:14 +0200 Subject: [PATCH] Fix help text to reflect support for TSV imports. --- netbox/utilities/forms/bulk_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/utilities/forms/bulk_import.py b/netbox/utilities/forms/bulk_import.py index be90db3a1..d89c8484d 100644 --- a/netbox/utilities/forms/bulk_import.py +++ b/netbox/utilities/forms/bulk_import.py @@ -21,7 +21,7 @@ class BulkImportForm(BootstrapMixin, SyncedDataMixin, forms.Form): data = forms.CharField( required=False, widget=forms.Textarea(attrs={'class': 'font-monospace'}), - help_text=_("Enter object data in CSV, JSON or YAML format."), + help_text=_("Enter object data in CSV, TSV, JSON or YAML format."), # Do not let Django strip data, because this can mess with TSV files. # When the last column of the last row is empty, the TSV will end with # a '\t' and that should not be stripped out!