From 83f19c584f89677463b73353d30a665eed7d086f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Panisson?= Date: Mon, 18 Apr 2011 09:57:08 -0700 Subject: [PATCH] The "raise exception" is overriding the stack trace and hiding all errors, a simple "raise" should be fine. --- tweepy/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 5203bcc..213ccba 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -133,7 +133,7 @@ class Stream(object): conn.close() if exception: - raise exception + raise def _read_loop(self, resp): while self.running: -- 2.25.1