Browse Source

Merge pull request #2061 from rzhxeo/var

Correct variable name in YoutubeDL.list_formats
totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
241bce7aaf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/YoutubeDL.py

+ 1
- 1
youtube_dl/YoutubeDL.py View File

@ -1016,7 +1016,7 @@ class YoutubeDL(object):
def list_formats(self, info_dict):
def format_note(fdict):
res = u''
if f.get('ext') in ['f4f', 'f4m']:
if fdict.get('ext') in ['f4f', 'f4m']:
res += u'(unsupported) '
if fdict.get('format_note') is not None:
res += fdict['format_note'] + u' '


Loading…
Cancel
Save