diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-01-14 21:53:24 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-01-14 21:53:24 +0600 | 
| commit | 5cc9c5dfa8f731b6582b092e06f78cccbaefc3c4 (patch) | |
| tree | 29c9049b62673db4363bc6ea6c02a0704020e180 | |
| parent | fbd90643cb123011a224da58b4ff1c4ba1c4f8f9 (diff) | |
[unistra] Fix extraction
| -rw-r--r-- | youtube_dl/extractor/unistra.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/unistra.py b/youtube_dl/extractor/unistra.py index f70978299..594bee4f9 100644 --- a/youtube_dl/extractor/unistra.py +++ b/youtube_dl/extractor/unistra.py @@ -38,7 +38,7 @@ class UnistraIE(InfoExtractor):          webpage = self._download_webpage(url, video_id) -        files = set(re.findall(r'file\s*:\s*"([^"]+)"', webpage)) +        files = set(re.findall(r'file\s*:\s*"(/[^"]+)"', webpage))          quality = qualities(['SD', 'HD'])          formats = [] | 
