From 1c38d63c50b90c3226d8374c5a15f257247c30ac Mon Sep 17 00:00:00 2001 From: Brian Ellwood Date: Mon, 26 Jul 2021 15:03:43 -0400 Subject: [PATCH] Update choices.py --- netbox/dcim/choices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'), )), )