Change test target (Verified with node.js)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 21 Sep 2013 13:10:38 +0000 (15:10 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 21 Sep 2013 13:10:38 +0000 (15:10 +0200)
test/test_youtube_signature.py
youtube_dl/extractor/youtube.py

index 2c06caef4a2043295dfa1d27596541492ea65ee5..36533cf1f976b3abd852865639fd60ea18e6a8dc 100644 (file)
@@ -30,7 +30,7 @@ _TESTS = [
         u'https://s.ytimg.com/yts/swfbin/watch_as3-vflg5GhxU.swf',
         u'swf',
         82,
-        u'23456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!?#$%&\'()*+,-./:;<=>"'
+        u':/.-,+*)=\'&%$#"!ZYX0VUTSRQPONMLKJIHGFEDCBAzyxw>utsrqponmlkjihgfedcba987654321'
     ),
 ]
 
index b57693ee65283846ceec25e1e873148e044cf2b9..45b593a124ab7fe784c62e4a95a382d7078c00ef 100644 (file)
@@ -857,7 +857,6 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
             m = methods[func_name]
 
             def resfunc(args):
-                print('Entering function %s(%r)' % (func_name, args))
                 registers = ['(this)'] + list(args) + [None] * m.local_count
                 stack = []
                 coder = io.BytesIO(m.code)