From: Paul van der Linden Date: Mon, 16 Feb 2015 20:51:56 +0000 (+0000) Subject: raise exception with original traceback X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2e5e6e29b4936a3b2b660369d6fbe9c7ec94adb6;p=tweepy.git raise exception with original traceback --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index bd1744d..fda054a 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -275,7 +275,7 @@ class Stream(object): if exception: # call a handler first so that the exception can be logged. self.listener.on_exception(exception) - raise exception + raise def _data(self, data): if self.listener.on_data(data) is False: