about summary refs log tree commit diff
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authoraystroganov@gmail.com <aystroganov@gmail.com>2016-04-13 21:30:32 +1000
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-04-13 14:29:34 +0200
commit8334637f4ac4a1aeddc6f05131be1c42ea6761e1 (patch)
tree1dc242d3f260dfea465d2bc39dc25baa9b861090 /youtube_dl/extractor/brightcove.py
parentb0ba11cc64656c09f349117fffa9739dcbb2541e (diff)
downloadyoutube-dl-8334637f4ac4a1aeddc6f05131be1c42ea6761e1.tar.gz
youtube-dl-8334637f4ac4a1aeddc6f05131be1c42ea6761e1.tar.xz
youtube-dl-8334637f4ac4a1aeddc6f05131be1c42ea6761e1.zip
Make tbr field 'int' rather than 'tuple'
Closes #9180.
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index c718cf385..f0781fc27 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -340,7 +340,7 @@ class BrightcoveLegacyIE(InfoExtractor):
                         ext = 'flv'
                 if ext is None:
                     ext = determine_ext(url)
-                tbr = int_or_none(rend.get('encodingRate'), 1000),
+                tbr = int_or_none(rend.get('encodingRate'), 1000)
                 a_format = {
                     'format_id': 'http%s' % ('-%s' % tbr if tbr else ''),
                     'url': url,