diff options
author | Allan Zhou <allanzp@gmail.com> | 2013-08-20 21:42:49 -0700 |
---|---|---|
committer | Allan Zhou <allanzp@gmail.com> | 2013-08-20 21:42:49 -0700 |
commit | cde846b3d3f59029fc07ecd97e49cfae050af3c9 (patch) | |
tree | 737d11fdba79024a58e4428e54284cdddb8b3add | |
parent | 211fbc1328edda1752fce9dc5ed604b98f9dc865 (diff) |
fix code style
-rw-r--r-- | youtube_dl/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index bdd399d3e..1cd2d40f1 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -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: |