diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-06-09 19:51:35 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-06-09 19:51:35 +0100 |
| commit | ebc751a57ce72f824a4749675a0e6ccd193f349c (patch) | |
| tree | 89cd963f3bdaff1ffbbe8207c5ca60812b19eef4 | |
| parent | ba7814c4da499635236f602e4bb92039d0345996 (diff) | |
tiny bug in data output
| -rwxr-xr-x | wim.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
