summaryrefslogtreecommitdiff
path: root/Lib/commands.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
committerGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
commitbdfcfccbe591e15221f35add01132174c9b4e669 (patch)
tree7e5f0d52b8c44e623b12e8f4b5cd645c361e5aeb /Lib/commands.py
parent4d8e859e8f0a209a7e999ce9cc0988156c795949 (diff)
downloadcpython-git-bdfcfccbe591e15221f35add01132174c9b4e669.tar.gz
New == syntax
Diffstat (limited to 'Lib/commands.py')
-rw-r--r--Lib/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/commands.py b/Lib/commands.py
index 4d16eefaa4..a6084a5a7b 100644
--- a/Lib/commands.py
+++ b/Lib/commands.py
@@ -25,8 +25,8 @@ def getstatusoutput(cmd):
pipe = posix.popen('{ ' + cmd + '; } 2>&1', 'r')
text = pipe.read()
sts = pipe.close()
- if sts = None: sts = 0
- if text[-1:] = '\n': text = text[:-1]
+ if sts == None: sts = 0
+ if text[-1:] == '\n': text = text[:-1]
return sts, text