Shorten error message

This commit is contained in:
Jeremy Stretch 2024-05-13 09:22:02 -04:00
parent db578bc3df
commit 288530b9f4

View File

@ -138,15 +138,15 @@ class PluginConfig(AppConfig):
min_version = version.parse(cls.min_version) min_version = version.parse(cls.min_version)
if current_version < min_version: if current_version < min_version:
raise ImproperlyConfigured( raise ImproperlyConfigured(
f"Plugin {cls.__module__} requires NetBox minimum version {cls.min_version} but " f"Plugin {cls.__module__} requires NetBox minimum version {cls.min_version} (current: "
f"this NetBox version is {netbox_version}." f"{netbox_version})."
) )
if cls.max_version is not None: if cls.max_version is not None:
max_version = version.parse(cls.max_version) max_version = version.parse(cls.max_version)
if current_version > max_version: if current_version > max_version:
raise ImproperlyConfigured( raise ImproperlyConfigured(
f"Plugin {cls.__module__} requires NetBox maximum version {cls.max_version} but " f"Plugin {cls.__module__} requires NetBox maximum version {cls.max_version} (current: "
f"this NetBox version is {netbox_version}." f"{netbox_version})."
) )
# Verify required configuration settings # Verify required configuration settings