aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-10-23 09:33:05 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2015-10-23 09:33:05 +0200
commitab03c0b47c142bfb649eacb3c72ce9cb67184535 (patch)
tree0dc93d6de46de51736dde1f6ff79ef5fb05d7b19 /CONTRIBUTING.md
parent769078755318896fa1a6c5c8aba6f76d6aeddf78 (diff)
downloadyoutube-dl-ab03c0b47c142bfb649eacb3c72ce9cb67184535.zip
youtube-dl-ab03c0b47c142bfb649eacb3c72ce9cb67184535.tar.gz
youtube-dl-ab03c0b47c142bfb649eacb3c72ce9cb67184535.tar.bz2
release 2015.10.23
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 32c2fd8..aebded4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -114,12 +114,13 @@ If you want to add support for a new site, you can follow this quick list (assum
webpage = self._download_webpage(url, video_id)
# TODO more code goes here, for example ...
- title = self._html_search_regex(r'<h1>(.*?)</h1>', webpage, 'title')
+ title = self._html_search_regex(r'<h1>(.+?)</h1>', webpage, 'title')
return {
'id': video_id,
'title': title,
'description': self._og_search_description(webpage),
+ 'uploader': self._search_regex(r'<div[^>]+id="uploader"[^>]*>([^<]+)<', webpage, 'uploader', fatal=False),
# TODO more properties (see youtube_dl/extractor/common.py)
}
```