1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Removed superfluous "is" in error message

This commit is contained in:
Jonathan Senecal
2016-10-19 14:22:34 -04:00
committed by GitHub
parent c09cb5df3d
commit 334b286ebf

View File

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