[Mellanox] Fix truncated manufacture date returned from platform API (#5473)
The manufacture date returned from platform API was truncated, time is not included. Revise the regular expression used for matching.
This commit is contained in:
parent
969f77cf3e
commit
8c3dbce209
@ -101,7 +101,7 @@ class Eeprom(eeprom_tlvinfo.TlvInfoDecoder):
|
|||||||
|
|
||||||
for line in lines:
|
for line in lines:
|
||||||
try:
|
try:
|
||||||
match = re.search('(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)([\S]+)', line)
|
match = re.search('(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)([\S]+[\s]*[\S]*)', line)
|
||||||
if match is not None:
|
if match is not None:
|
||||||
idx = match.group(1)
|
idx = match.group(1)
|
||||||
value = match.group(3).rstrip('\0')
|
value = match.group(3).rstrip('\0')
|
||||||
|
Loading…
Reference in New Issue
Block a user