aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/xhamster.py
diff options
context:
space:
mode:
authoratomic83 <atomic83@riseup.net>2016-01-08 12:58:05 +0100
committeratomic83 <atomic83@riseup.net>2016-01-08 12:58:05 +0100
commit5777f5d386d14407a19bc86c31e0bf2b5ae4a87f (patch)
tree6f8285edb26dacbf1bd9a9430986667f66d83378 /youtube_dl/extractor/xhamster.py
parent5dbe81a1d35ae704b5ea208698a6bb785923d71a (diff)
downloadyoutube-dl-5777f5d386d14407a19bc86c31e0bf2b5ae4a87f.zip
youtube-dl-5777f5d386d14407a19bc86c31e0bf2b5ae4a87f.tar.gz
youtube-dl-5777f5d386d14407a19bc86c31e0bf2b5ae4a87f.tar.bz2
Extract xHamster title fix
Diffstat (limited to 'youtube_dl/extractor/xhamster.py')
-rw-r--r--youtube_dl/extractor/xhamster.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py
index 8938c0e..261d323 100644
--- a/youtube_dl/extractor/xhamster.py
+++ b/youtube_dl/extractor/xhamster.py
@@ -65,7 +65,7 @@ class XHamsterIE(InfoExtractor):
title = self._html_search_regex(
[r'<title>(?P<title>.+?)(?:, (?:[^,]+? )?Porn: xHamster| - xHamster\.com)</title>',
- r'<h1>([^<]+)</h1>'], webpage, 'title')
+ r'<h1(?: itemprop="name")?>([^<]+)</h1>'], webpage, 'title')
# Only a few videos have an description
mobj = re.search(r'<span>Description: </span>([^<]+)', webpage)