youtube-dl

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

commit b66e699877937b4520db885c82958714304bf74a
parent 27f8b0994e9924724c974f46435552d401f5fc08
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 23 Nov 2014 22:12:18 +0100

[myspace] pep8 and modernization

Diffstat:
Myoutube_dl/extractor/myspace.py | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/myspace.py b/youtube_dl/extractor/myspace.py @@ -4,7 +4,7 @@ import re import json from .common import InfoExtractor -from ..utils import ( +from ..compat import ( compat_str, ) @@ -52,8 +52,8 @@ class MySpaceIE(InfoExtractor): if mobj.group('mediatype').startswith('music/song'): # songs don't store any useful info in the 'context' variable def search_data(name): - return self._search_regex(r'data-%s="(.*?)"' % name, webpage, - name) + return self._search_regex( + r'data-%s="(.*?)"' % name, webpage, name) streamUrl = search_data('stream-url') info = { 'id': video_id, @@ -62,8 +62,8 @@ class MySpaceIE(InfoExtractor): 'thumbnail': self._og_search_thumbnail(webpage), } else: - context = json.loads(self._search_regex(r'context = ({.*?});', webpage, - u'context')) + context = json.loads(self._search_regex( + r'context = ({.*?});', webpage, 'context')) video = context['video'] streamUrl = video['streamUrl'] info = {