youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5c0b2c16a80c509dbcee48f48da3de0bf9912cda
parent d39e0f05db226ef5691f5730d40da796aec6bac6
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Sat,  9 May 2015 12:34:45 +0200

[vgtv] Escape '#' in _VALID_URL and remove empty newlines at the end

In verbose mode, '#' is interpreted as the start of a comment.

Diffstat:
Myoutube_dl/extractor/vgtv.py | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/vgtv.py b/youtube_dl/extractor/vgtv.py @@ -17,7 +17,7 @@ class VGTVIE(InfoExtractor): (?P<host>vgtv|bt) (?: :| - \.no/(?:tv/)?#!/(?:video|live)/ + \.no/(?:tv/)?\#!/(?:video|live)/ ) (?P<id>[0-9]+) ''' @@ -188,5 +188,3 @@ class BTVestlendingenIE(InfoExtractor): def _real_extract(self, url): return self.url_result('xstream:btno:%s' % self._match_id(url), 'Xstream') - -