mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-06 01:46:27 +00:00
Merge branch 'fix-radius-attributes-display' into 'dev'
Fix radius attributes __str__ See merge request federez/re2o!438
This commit is contained in:
commit
d98eb4e011
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ class RadiusAttribute(RevMixin, AclMixin, models.Model):
|
||||||
)
|
)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return ' '.join([self.attribute, self.operator, self.value])
|
return ' '.join([self.attribute, '=', self.value])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue