From: Josh Roesslein Date: Thu, 15 Oct 2009 02:05:04 +0000 (-0500) Subject: Remove debug print. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=64d8349aa185f708407b84e7e541cf0c84b0119b;p=tweepy.git Remove debug print. --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 93c8c09..8b743aa 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -175,7 +175,6 @@ class Stream(object): self.url += '&follow=%s' % ','.join(follow) if track: self.url += '&track=%s' % ','.join(track) - print self.url self.running = True Thread(target=self._run).start()