mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Rattrapage d'une erreur index Error sur la récupération du vendeur
This commit is contained in:
parent
56fdfca1aa
commit
54db192e8f
1 changed files with 1 additions and 1 deletions
|
@ -1131,7 +1131,7 @@ class Interface(RevMixin, AclMixin, FieldPermissionModelMixin, models.Model):
|
|||
try:
|
||||
oui = mac.oui
|
||||
vendor = oui.registration().org
|
||||
except NotRegisteredError:
|
||||
except (IndexError, NotRegisteredError) as error:
|
||||
vendor = _("Unknown vendor.")
|
||||
return vendor
|
||||
|
||||
|
|
Loading…
Reference in a new issue