diff options
Diffstat (limited to 'youtube/subscriptions.py')
-rw-r--r-- | youtube/subscriptions.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 7a39b23..9298963 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -319,6 +319,8 @@ def check_channel_worker(): channel_id = check_channels_queue.get() try: _get_upstream_videos(channel_id) + except Exception: + traceback.print_exc() finally: checking_channels.remove(channel_id) |