From 2f278b7f3c5f9dea42f18067de20917c66e710c0 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Wed, 27 Jan 2021 13:30:37 -0600 Subject: [PATCH] Removed yet another reference to Twython --- src/mysc/thread_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mysc/thread_utils.py b/src/mysc/thread_utils.py index 3a112e33..05cd8564 100644 --- a/src/mysc/thread_utils.py +++ b/src/mysc/thread_utils.py @@ -10,8 +10,6 @@ def call_threaded(func, *args, **kwargs): def new_func(*a, **k): try: func(*a, **k) - except TwythonRateLimitError: - pass except: log.exception("Thread %d with function %r, args of %r, and kwargs of %r failed to run." % (threading.current_thread().ident, func, a, k)) # pass