diff options
author | gamer191 <83270075+gamer191@users.noreply.github.com> | 2022-10-04 15:23:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 09:53:11 +0530 |
commit | 304ad45a9b18cba7b62e7cb435fb0ddc49003ed7 (patch) | |
tree | b4442d5e85a30db771362b6b9ea3d703fe1b5145 /yt_dlp/extractor/liputan6.py | |
parent | 878eac3e2e3dfc0b811e9575056d89e19e060e79 (diff) |
[cleanup] Misc (#5044)
Authored by: gamer191, pukkandan
Diffstat (limited to 'yt_dlp/extractor/liputan6.py')
-rw-r--r-- | yt_dlp/extractor/liputan6.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/liputan6.py b/yt_dlp/extractor/liputan6.py index b5dbffe24..c4477b93e 100644 --- a/yt_dlp/extractor/liputan6.py +++ b/yt_dlp/extractor/liputan6.py @@ -57,7 +57,7 @@ class Liputan6IE(InfoExtractor): webpage = self._download_webpage(url, display_id) json_data = self._search_json( - r'window.kmklabs.gtm\s*=\s*', webpage, 'json_data', display_id) + r'window.kmklabs.gtm\s*=', webpage, 'json_data', display_id) video_id = json_data['videos']['video_1']['video_id'] return self.url_result( |