Browse Source

[kaltura] Fix embed info strip (refs #22658)

master
Sergey M․ 5 years ago
parent
commit
1907f06e7b
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/kaltura.py

+ 2
- 1
youtube_dl/extractor/kaltura.py View File

@ -151,7 +151,8 @@ class KalturaIE(InfoExtractor):
if mobj:
embed_info = mobj.groupdict()
for k, v in embed_info.items():
embed_info[k] = v.strip()
if v:
embed_info[k] = v.strip()
url = 'kaltura:%(partner_id)s:%(id)s' % embed_info
escaped_pid = re.escape(embed_info['partner_id'])
service_url = re.search(


Loading…
Cancel
Save