New == syntax
diff --git a/Lib/commands.py b/Lib/commands.py
index 4d16eef..a6084a5 100644
--- a/Lib/commands.py
+++ b/Lib/commands.py
@@ -25,8 +25,8 @@
 	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