youtube-dl

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

commit 3b1dfc0f2f49117c30fab8aef45993ecf99256c2
parent d664de44b70e45a6a1764c372c49839ea4769ba2
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  3 May 2014 02:30:50 +0700

[newstube] Do not shadow standard str

Diffstat:
Myoutube_dl/extractor/newstube.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/newstube.py b/youtube_dl/extractor/newstube.py @@ -37,8 +37,8 @@ class NewstubeIE(InfoExtractor): 'http://p.newstube.ru/v2/player.asmx/GetAutoPlayInfo6?state=&url=%s&sessionId=&id=%s&placement=profile&location=n2' % (url, video_guid), video_guid, 'Downloading player XML') - def ns(str): - return str.replace('/', '/%(ns)s') % {'ns': '{http://app1.newstube.ru/N2SiteWS/player.asmx}'} + def ns(s): + return s.replace('/', '/%(ns)s') % {'ns': '{http://app1.newstube.ru/N2SiteWS/player.asmx}'} session_id = player.find(ns('./SessionId')).text media_info = player.find(ns('./Medias/MediaInfo'))