Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Xiangce Liu <[email protected]>
  • Loading branch information
xiangce committed Apr 19, 2022
1 parent 3719aff commit 38edd49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions insights/parsers/ibm_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class IBMFirmwareLevel(Parser):
FW950.30 (VL950_092)\x00
Attributes:
raw (str): The RAW value of the `ibm,fw-vernum_encoded` file.
raw (str): The RAW content of the `ibm,fw-vernum_encoded` file.
firmware_level (str): The firmware level required by FLRT.
Examples:
Expand All @@ -78,4 +78,4 @@ def parse_content(self, content):
if "(" not in self.raw or ")" not in self.raw:
raise SkipException("Nothing to parse.")

self.firmware_level = self.raw[self.raw.index('(')+1:self.raw.index(')')]
self.firmware_level = self.raw[self.raw.index('(') + 1:self.raw.index(')')]

0 comments on commit 38edd49

Please sign in to comment.