From c739d38f451513f9a4e1567613a022a0b9c250e0 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Tue, 17 Sep 2024 11:45:32 -0400 Subject: [PATCH] Make ipv6 help text more correct --- netbox/dcim/forms/bulk_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/forms/bulk_import.py b/netbox/dcim/forms/bulk_import.py index 68972997e..894f3ed73 100644 --- a/netbox/dcim/forms/bulk_import.py +++ b/netbox/dcim/forms/bulk_import.py @@ -1447,7 +1447,7 @@ class VirtualDeviceContextImportForm(NetBoxModelImportForm): queryset=IPAddress.objects.all(), required=False, to_field_name='address', - help_text=_('IPv6 address with mask, e.g. 1111:2222:3333:4444:5555:6666:7777:8888/24') + help_text=_('IPv6 address with prefix length, e.g. 1111:2222:3333:4444:5555:6666:7777:8888/64') ) class Meta: