From 047f454dec1a40d42338fc73df9a4d8777205de0 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 2 Jun 2021 14:29:52 -0400 Subject: [PATCH] Correct mispelling in error message Change-Id: Ia6c2d9a4a5e8401d7c2eb64c685dccbbf1794b78 --- pyghmi/ipmi/fru.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyghmi/ipmi/fru.py b/pyghmi/ipmi/fru.py index cec37ef6..abdd291d 100644 --- a/pyghmi/ipmi/fru.py +++ b/pyghmi/ipmi/fru.py @@ -263,7 +263,7 @@ class FRU(object): if offset == 0: return if self.databytes[offset] & 0b1111 != 1: - raise iexc.BmcErrorException("Invallid/Unsupported chassis area") + raise iexc.BmcErrorException("Invalid/Unsupported chassis area") inf = self.info # ignore length field, just process the data inf['Chassis type'] = enclosure_types[self.databytes[offset + 2]]