Skip to content

Commit

Permalink
[senateisvp] Allow https URL scheme for embeds
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhawkinson authored and dstftw committed Mar 20, 2017
1 parent 957f453 commit 8a8cc33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/senateisvp.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class SenateISVPIE(InfoExtractor):
@staticmethod
def _search_iframe_url(webpage):
mobj = re.search(
r"<iframe[^>]+src=['\"](?P<url>http://www\.senate\.gov/isvp/?\?[^'\"]+)['\"]",
r"<iframe[^>]+src=['\"](?P<url>https?://www\.senate\.gov/isvp/?\?[^'\"]+)['\"]",
webpage)
if mobj:
return mobj.group('url')
Expand Down

0 comments on commit 8a8cc33

Please sign in to comment.