diff options
author | bashonly <bashonly@bashonly.com> | 2023-06-25 17:04:42 -0500 |
---|---|---|
committer | bashonly <bashonly@bashonly.com> | 2023-06-25 17:04:42 -0500 |
commit | ef8509c300ea50da86aea447eb214d3d6f6db6bb (patch) | |
tree | f7c92f88ec2731e40fb20b384db8b9e293afa69c | |
parent | 5e16cf92eb496b7c1541a6b1d727cb87542984db (diff) | |
download | hypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.tar.lz hypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.tar.xz hypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.zip |
[extractor/kick] Fix `_VALID_URL`
Closes #7384
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/kick.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/kick.py b/yt_dlp/extractor/kick.py index 765ffa0c8..be1dfd4b1 100644 --- a/yt_dlp/extractor/kick.py +++ b/yt_dlp/extractor/kick.py @@ -30,7 +30,7 @@ class KickBaseIE(InfoExtractor): class KickIE(KickBaseIE): - _VALID_URL = r'https?://(?:www\.)?kick\.com/(?!(?:video|categories|search|auth)(?:[/?#]|$))(?P<id>[\w_]+)' + _VALID_URL = r'https?://(?:www\.)?kick\.com/(?!(?:video|categories|search|auth)(?:[/?#]|$))(?P<id>[\w-]+)' _TESTS = [{ 'url': 'https://kick.com/yuppy', 'info_dict': { |