Remove incorrect usages of "is" operator from Python scripts.
Closes #128 Signed-off-by: Chris PeBenito <pebenito@ieee.org>
This commit is contained in:
parent
45bd96f619
commit
0bfd1387ac
|
@ -46,10 +46,10 @@ EXCLUDE_LOGINS=["/sbin/nologin", "/bin/false"]
|
||||||
|
|
||||||
# Python 2/3 wrapper
|
# Python 2/3 wrapper
|
||||||
def getstatusoutput_wrapper(cmd):
|
def getstatusoutput_wrapper(cmd):
|
||||||
if sys.version_info.major is 2:
|
if sys.version_info.major == 2:
|
||||||
import commands
|
import commands
|
||||||
return commands.getstatusoutput(cmd)
|
return commands.getstatusoutput(cmd)
|
||||||
elif sys.version_info.major is 3:
|
elif sys.version_info.major == 3:
|
||||||
import subprocess
|
import subprocess
|
||||||
return subprocess.getstatusoutput(cmd)
|
return subprocess.getstatusoutput(cmd)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -266,7 +266,7 @@ def format_html_desc(node):
|
||||||
desc_buf = ''
|
desc_buf = ''
|
||||||
for desc in node.childNodes:
|
for desc in node.childNodes:
|
||||||
if desc.nodeName == "#text":
|
if desc.nodeName == "#text":
|
||||||
if desc.data is not '':
|
if desc.data:
|
||||||
if desc.parentNode.nodeName != "p":
|
if desc.parentNode.nodeName != "p":
|
||||||
desc_buf += "<p>" + desc.data + "</p>"
|
desc_buf += "<p>" + desc.data + "</p>"
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue