[newstube] Do not shadow standard str
authorSergey M․ <dstftw@gmail.com>
Fri, 2 May 2014 19:30:50 +0000 (02:30 +0700)
committerSergey M․ <dstftw@gmail.com>
Fri, 2 May 2014 19:30:50 +0000 (02:30 +0700)
youtube_dl/extractor/newstube.py

index 119414da02d7ba4e6f8166a1fe2ee0c7f871e64d..2fd5b8f0430351cd7eadf8b5acef3cf5786d27ab 100644 (file)
@@ -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'))