Browse Source

Removed superfluous "is" in error message

Jonathan Senecal 8 years ago
parent
commit
334b286ebf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/ipam/models.py

+ 1 - 1
netbox/ipam/models.py

@@ -139,7 +139,7 @@ class Aggregate(CreatedUpdatedModel, CustomFieldModel):
             if self.pk:
             if self.pk:
                 covered_aggregates = covered_aggregates.exclude(pk=self.pk)
                 covered_aggregates = covered_aggregates.exclude(pk=self.pk)
             if covered_aggregates:
             if covered_aggregates:
-                raise ValidationError("{} is overlaps with an existing aggregate ({})"
+                raise ValidationError("{} overlaps with an existing aggregate ({})"
                                       .format(self.prefix, covered_aggregates[0]))
                                       .format(self.prefix, covered_aggregates[0]))
 
 
     def save(self, *args, **kwargs):
     def save(self, *args, **kwargs):