Skip to content

Commit

Permalink
[Bug fix] fix a syntax error (sonic-net#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
keboliu authored and qiluo-msft committed Dec 10, 2019
1 parent 88cf320 commit 6f74dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic_platform_base/sonic_eeprom/eeprom_tlvinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def update_eeprom_db(self, e):
else:
tlv_index += ord(e[tlv_index + 1]) + 2

if vendor_ext_tlv_num > 0
if vendor_ext_tlv_num > 0:
fvs['Num_vendor_ext'] = str(vendor_ext_tlv_num)
client.hmset('EEPROM_INFO|{}'.format(hex(self._TLV_CODE_VENDOR_EXT)), fvs)
fvs.clear()
Expand Down

0 comments on commit 6f74dd3

Please sign in to comment.