Update ce_bfd_global to fix bugs (#60412)

This commit is contained in:
yanzhangi 2019-08-13 14:11:51 +08:00 committed by ansibot
parent c27b5ae1a3
commit 4512f664a7

View file

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