From 5a198a4ddda0ed179a9bd3ee9e4f562814846a96 Mon Sep 17 00:00:00 2001 From: chatasos <47942984+chatasos@users.noreply.github.com> Date: Thu, 3 Oct 2024 17:12:48 +0300 Subject: [PATCH] Update netbox_api.py --- netbox_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox_api.py b/netbox_api.py index 442c507c..1e0dbc91 100644 --- a/netbox_api.py +++ b/netbox_api.py @@ -55,7 +55,7 @@ def verify_compatibility(self): if version_split[0] > 3 or (version_split[0] == 3 and version_split[1] >= 2): self.modules = True - # check if version >= 4.1 in order to use new filter names + # check if version >= 4.1 in order to use new filter names (https://github.com/netbox-community/netbox/issues/15410) if version_split[0] >= 4 and version_split[1] >= 1: self.new_filters = True self.handle.log(f'Netbox version {self.netbox.version} found. Using new filters.')