fix code style
authorAllan Zhou <allanzp@gmail.com>
Wed, 21 Aug 2013 04:42:49 +0000 (21:42 -0700)
committerAllan Zhou <allanzp@gmail.com>
Wed, 21 Aug 2013 04:42:49 +0000 (21:42 -0700)
youtube_dl/extractor/youtube.py

index bdd399d3e0b3ccd853a224d59bb66753f176f54f..1cd2d40f18bc9af648f5cb299695864e6d6269fb 100644 (file)
@@ -777,7 +777,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
             if m_s is not None:
                 self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
                 video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
-            m_s = re.search(r'[&,]s=', args['adaptive_fmts'] if 'adaptive_fmts' in args else '')
+            m_s = re.search(r'[&,]s=', args.get('adaptive_fmts', u''))
             if m_s is not None and 'adaptive_fmts' in args:
                 video_info['url_encoded_fmt_stream_map'][0] += ','+args['adaptive_fmts']
             elif 'adaptive_fmts' in video_info: