[chassis.py] Fix issue in get_change_event: the returned dictionary doesn't contain 'sfp' key. (#3568)

This commit is contained in:
Stephen Sun 2019-10-09 00:26:35 +08:00 committed by lguohan
parent aec2477060
commit 350d2c5d2b

View File

@ -523,4 +523,4 @@ class Chassis(ChassisBase):
i = i + 1
return True, {'sfp':port_dict}
else:
return True, {}
return True, {'sfp':{}}