diff --git a/netbox/netbox/models/features.py b/netbox/netbox/models/features.py index 4866eeb37..f041d016d 100644 --- a/netbox/netbox/models/features.py +++ b/netbox/netbox/models/features.py @@ -258,7 +258,7 @@ class CustomValidationMixin(models.Model): super().clean() # If the instance is a base for replications, skip custom validation - if hasattr(self, '_replicated_base'): + if getattr(self, '_replicated_base', False): return # Send the post_clean signal