From a3e1595c7e3bcda9f5dcef362802d605f9656700 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 31 Jan 2023 15:02:22 -0500 Subject: [PATCH] Correct variable name in set_net6_configuration Change-Id: I93d1f484b7a6cc7b24ebb3209866c5e984a8a1d2 --- pyghmi/ipmi/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyghmi/ipmi/command.py b/pyghmi/ipmi/command.py index 24278b02..5b37b96d 100644 --- a/pyghmi/ipmi/command.py +++ b/pyghmi/ipmi/command.py @@ -870,7 +870,7 @@ class Command(object): self._oem.clear_system_configuration() def set_net6_configuration(self, static_addresses=None, static_gateway=None, channel=None): - if static_addrs is None and static_gateway is None: + if static_addresses is None and static_gateway is None: return if channel is None: channel = self.get_network_channel()