From: Aaron Hill Date: Sat, 22 Feb 2014 04:12:11 +0000 (-0500) Subject: Encode stream parameters X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=431dd761dc03285da91d36820684c0242ab55e2a;p=tweepy.git Encode stream parameters --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index dc93d58..c1ab0bc 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -299,9 +299,10 @@ class Stream(object): self.url = '/%s/statuses/filter.json' % STREAM_VERSION if follow: encoded_follow = [s.encode(encoding) for s in follow] - self.session.params['follow'] = ','.join(map(str, follow)) + self.session.params['follow'] = ','.join(encoded_follow) if track: - self.session.params['track'] = ','.join(map(str, track)) + encoded_track = [s.encode(encoding) for s in track] + self.session.params['track'] = ','.join(encoded_track) if locations and len(locations) > 0: if len(locations) % 4 != 0: raise TweepError("Wrong number of locations points, "