mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[extractor/common] Return unicode string from _match_id
This commit is contained in:
parent
7515830422
commit
1afd0b0da7
|
@ -376,7 +376,7 @@ class InfoExtractor(object):
|
|||
cls._VALID_URL_RE = re.compile(cls._VALID_URL)
|
||||
m = cls._VALID_URL_RE.match(url)
|
||||
assert m
|
||||
return m.group('id')
|
||||
return compat_str(m.group('id'))
|
||||
|
||||
@classmethod
|
||||
def working(cls):
|
||||
|
|
Loading…
Reference in a new issue