mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix radius attributes __str__
This commit is contained in:
parent
9c1ca89b9d
commit
86e5c8d322
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue