From 8dfb85d0cae0e2ff05a5c41b0536396f55f3a06e Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 24 Jan 2021 08:30:34 -0600 Subject: [PATCH] Stop reraising exceptions in Stream._connect Resolves #1072 --- tweepy/streaming.py | 1 - 1 file changed, 1 deletion(-) 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 -- 2.25.1