Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/Network.py
diff options
context:
space:
mode:
Diffstat (limited to 'Util/Network.py')
-rw-r--r--Util/Network.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Util/Network.py b/Util/Network.py
index f884beb..85e8e5a 100644
--- a/Util/Network.py
+++ b/Util/Network.py
@@ -44,7 +44,7 @@ message_enum = [
("PR_LATENCY_QUERY", 4), # test latency
("PR_SYNC_QUERY", 4), # test sync
-("PR_TEMPO_QUERY", 4), # test sync
+("PR_TEMPO_QUERY", 0), # test sync
("MAX_MSG_ID", 0)
]
@@ -332,7 +332,7 @@ class Network:
if size >= 0:
if length != size:
- print "Network:: message wrong length! Got %d expected %d: %s %s" % (MSG_SIZE[message], len(data), MSG_NAME[message], data)
+ print "Network:: message wrong length! Got %d expected %d: %s %s" % (len(data), MSG_SIZE[message], MSG_NAME[message], data)
return
msg = chr(message) + data
elif size == -1: