diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index 06d800623..a53f357f8 100644 --- a/netbox/dcim/choices.py +++ b/netbox/dcim/choices.py @@ -342,7 +342,7 @@ class PowerPortTypeChoices(ChoiceSet): # Proprietary TYPE_SAF_D_GRID = 'saf-d-grid' # Other - TYPE_OTHER = 'other' + TYPE_HARDWIRED = 'hardwired' CHOICES = ( ('IEC 60320', ( @@ -450,7 +450,7 @@ class PowerPortTypeChoices(ChoiceSet): (TYPE_SAF_D_GRID, 'Saf-D-Grid'), )), ('Other', ( - (TYPE_OTHER, 'Other'), + (TYPE_HARDWIRED, 'Hardwired'), )), )