From ebc751a57ce72f824a4749675a0e6ccd193f349c Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sat, 9 Jun 2012 19:51:35 +0100 Subject: tiny bug in data output --- wim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wim.py b/wim.py index 1783705..b3ecbb6 100755 --- a/wim.py +++ b/wim.py @@ -113,7 +113,7 @@ while True: if check!=False: if debug==True: print "wim: received from gps",check[0],check[1] - outsock.sendto("gps data"+str(check[0])+" "+str(check[1])+"\n",(PD_IP, PD_PORT) ) + outsock.sendto("gps data "+str(check[0])+" "+str(check[1])+"\n",(PD_IP, PD_PORT) ) pos=latLng(check[0],check[1]) posChanged=True if posChanged: -- cgit v1.2.3