We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24ba4de commit f84f408Copy full SHA for f84f408
device/accton/x86_64-accton_as4630_54pe-r0/sonic_platform/eeprom.py
@@ -33,7 +33,7 @@ def __parse_output(self, decode_output):
33
for line in lines:
34
try:
35
match = re.search(
36
- '(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)([\S]+)', line)
+ '(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)(.+)', line)
37
if match is not None:
38
idx = match.group(1)
39
value = match.group(3).rstrip('\0')
0 commit comments