Arch_Repo_Builder/ARB/arb_util.py

9 lines
234 B
Python
Raw Normal View History

2019-09-20 12:55:13 -04:00
def xmlBool(xmlobj):
if isinstance(xmlobj, bool):
return (xmlobj)
if xmlobj.lower() in ('1', 'true'):
return(True)
elif xmlobj.lower() in ('0', 'false'):
return(False)
else:
return(None)