Corrects method name (#25568)

The method name was missing a 'd'. The method was not used anywhere
however, so no other code needs to be changed. Neither 'has_chilren'
nor 'has_children' are used in the codebase.
pull/24577/head
Tim Rupp 7 years ago committed by John R Barker
parent 4ffc4b6748
commit 9c849d5c94

@ -81,7 +81,7 @@ class ConfigLine(object):
return '\n'.join(config)
@property
def has_chilren(self):
def has_children(self):
return len(self._children) > 0
@property

Loading…
Cancel
Save