summaryrefslogtreecommitdiffstats
path: root/Lib/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/commands.py')
-rw-r--r--Lib/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/commands.py b/Lib/commands.py
index 12acc36..99387b1 100644
--- a/Lib/commands.py
+++ b/Lib/commands.py
@@ -51,7 +51,7 @@ def getstatusoutput(cmd):
pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
text = pipe.read()
sts = pipe.close()
- if sts == None: sts = 0
+ if sts is None: sts = 0
if text[-1:] == '\n': text = text[:-1]
return sts, text