Browse Source

Fix radius attributes __str__

212-ttl-for-dns-records
Hugo Levy-Falk 6 years ago
parent
commit
86e5c8d322
  1. 2
      preferences/models.py

2
preferences/models.py

@ -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…
Cancel
Save