From: Harmon Date: Sun, 24 Jan 2021 14:30:34 +0000 (-0600) Subject: Stop reraising exceptions in Stream._connect X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8dfb85d0cae0e2ff05a5c41b0536396f55f3a06e;p=tweepy.git Stop reraising exceptions in Stream._connect Resolves #1072 --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 05766e1..d94a4f1 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -124,7 +124,6 @@ class Stream: ) except Exception as exc: self.on_exception(exc) - raise finally: self.session.close() self.running = False