Update ce_bfd_global to fix bugs

pull/60412/head
zhangyan 6 years ago
parent 0e9f002073
commit c742ce8ee3

@ -284,7 +284,8 @@ class BfdGlobal(object):
glb = root.find("bfd/bfdSchGlobal")
if glb:
for attr in glb:
bfd_dict["global"][attr.tag] = attr.text
if attr.text is not None:
bfd_dict["global"][attr.tag] = attr.text
return bfd_dict

Loading…
Cancel
Save