Explorar el Código

[YoutubeDL] Improve _format_note

Sergey M․ hace 9 años
padre
commit
9016d76f71
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      youtube_dl/YoutubeDL.py

+ 1 - 1
youtube_dl/YoutubeDL.py

@@ -1836,7 +1836,7 @@ class YoutubeDL(object):
         if fdict.get('language'):
         if fdict.get('language'):
             if res:
             if res:
                 res += ' '
                 res += ' '
-            res += '[%s]' % fdict['language']
+            res += '[%s] ' % fdict['language']
         if fdict.get('format_note') is not None:
         if fdict.get('format_note') is not None:
             res += fdict['format_note'] + ' '
             res += fdict['format_note'] + ' '
         if fdict.get('tbr') is not None:
         if fdict.get('tbr') is not None: