From 9a4b9a04b79a65e60b1825a82b3360b8b3629fa7 Mon Sep 17 00:00:00 2001 From: NoMoKeTo Date: Mon, 27 Jan 2014 20:52:57 +0100 Subject: [PATCH] More Precision in Coordinate-Search --- tweepy/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index b17b4f9..533f1b3 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -301,7 +301,7 @@ class Stream(object): self.parameters['track'] = ','.join(encoded_track) if locations and len(locations) > 0: assert len(locations) % 4 == 0 - self.parameters['locations'] = ','.join(['%.2f' % l for l in locations]) + self.parameters['locations'] = ','.join(['%.4f' % l for l in locations]) if count: self.parameters['count'] = count if stall_warnings: -- 2.25.1