Update ce_bfd_global to fix bugs (#60412)

pull/60412/merge
yanzhangi 5 years ago committed by ansibot
parent c27b5ae1a3
commit 4512f664a7

@ -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