1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 19:19:32 +00:00

[pornhub:uservideos] Add missing raise

This commit is contained in:
Sergey M․ 2017-06-04 20:39:55 +07:00
parent cd138d8bd4
commit 9edcdac90c
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -299,6 +299,7 @@ class PornHubUserVideosIE(PornHubPlaylistBaseIE):
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
break
raise
page_entries = self._extract_entries(webpage)
if not page_entries:
break