8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-16 07:36:21 +00:00

Fix des erreurs, et améliore la lisibilité des logs

This commit is contained in:
Gabriel Detraz 2018-08-07 17:22:21 +02:00 committed by root
parent 2b4680b54d
commit ef2101e0c5
3 changed files with 3 additions and 3 deletions

View file

@ -348,7 +348,7 @@ def decide_vlan_and_register_switch(nas_machine, nas_type, port_number,
if not nas_machine:
return ('?', u'Chambre inconnue', u'Nas inconnu', VLAN_OK)
sw_name = str(nas_machine)
sw_name = str(getattr(nas_machine, 'short_name', str(nas_machine)))
port = (Port.objects
.filter(

View file

@ -9,7 +9,7 @@
python re2o {
module = auth
python_path = /etc/freeradius/3.0:/usr/lib/python2.7/:/usr/lib/python2.7/dist-packages/:/usr/local/lib/python2.7/site-packages/:/usr/local/lib/python2.7/dist-packages/
python_path = /etc/freeradius/3.0:/usr/lib/python2.7:/usr/lib/python2.7/dist-packages:/usr/local/lib/python2.7/site-packages:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages
mod_instantiate = ${.module}
func_instantiate = instantiate

View file

@ -427,7 +427,7 @@ class Port(AclMixin, RevMixin, models.Model):
:returns: the profile of self (port)"""
def profile_or_nothing(profile):
port_profile = PortProfile.objects.filter(
profile_default=profile).first()
profil_default=profile).first()
if port_profile:
return port_profile
else: