Fix nameerror exc.
This commit is contained in:
parent
9b6af96b95
commit
451285ba0b
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ def get_user_videos(channel_id):
|
||||||
'''
|
'''
|
||||||
try:
|
try:
|
||||||
return _get_user_videos(channel_id)
|
return _get_user_videos(channel_id)
|
||||||
except Exception:
|
except Exception as exc:
|
||||||
raise exceptions.RSSAssistFailed(f'Failed to fetch RSS videos.') from exc
|
raise exceptions.RSSAssistFailed(f'Failed to fetch RSS videos.') from exc
|
||||||
|
|
||||||
def get_user_videos_since(channel_id, video_id):
|
def get_user_videos_since(channel_id, video_id):
|
||||||
|
|
Loading…
Reference in a new issue