New == syntax
diff --git a/Demo/sockets/throughput.py b/Demo/sockets/throughput.py
index 411af9f..6ffcaa8 100755
--- a/Demo/sockets/throughput.py
+++ b/Demo/sockets/throughput.py
@@ -23,9 +23,9 @@
 def main():
 	if len(sys.argv) < 2:
 		usage()
-	if sys.argv[1] = '-s':
+	if sys.argv[1] == '-s':
 		server()
-	elif sys.argv[1] = '-c':
+	elif sys.argv[1] == '-c':
 		client()
 	else:
 		usage()