diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-03-20 22:01:45 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-20 22:01:45 +0600 |
commit | 9016d76f71b30bd61d69f80dc88fa53f978cf99c (patch) | |
tree | e9489c4658963ce7ade4cc5d35371ff1cc20c493 /youtube_dl/YoutubeDL.py | |
parent | 3c5d183c19f29c1f52fe913ce7e7d47f6eebff2f (diff) |
[YoutubeDL] Improve _format_note
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 93b6ca54d..29d7a3106 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1836,7 +1836,7 @@ class YoutubeDL(object): if fdict.get('language'): if res: res += ' ' - res += '[%s]' % fdict['language'] + res += '[%s] ' % fdict['language'] if fdict.get('format_note') is not None: res += fdict['format_note'] + ' ' if fdict.get('tbr') is not None: |