From: Robin Houston Date: Sat, 5 Mar 2011 15:45:55 +0000 (+0000) Subject: Change tabs to spaces, for consistency X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a722e4872cbccf360f4b88078979629d75981b4e;p=tweepy.git Change tabs to spaces, for consistency --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index f9797a0..b10444d 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -204,8 +204,8 @@ class Stream(object): if locations and len(locations) > 0: assert len(locations) % 4 == 0 self.parameters['locations'] = ','.join(['%.2f' % l for l in locations]) - if count: - self.parameters['count'] = count + if count: + self.parameters['count'] = count self.body = urllib.urlencode(self.parameters) self.parameters['delimited'] = 'length' self._start(async)