8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

Fix radius attributes __str__

This commit is contained in:
Hugo Levy-Falk 2019-09-20 11:04:02 +02:00
parent 9c1ca89b9d
commit 86e5c8d322

View file

@ -613,7 +613,7 @@ class RadiusAttribute(RevMixin, AclMixin, models.Model):
)
def __str__(self):
return ' '.join([self.attribute, self.operator, self.value])
return ' '.join([self.attribute, '=', self.value])