diff options
author | Elyse <26639800+elyse0@users.noreply.github.com> | 2022-09-03 01:44:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-03 12:14:01 +0530 |
commit | 69082b38dcb8ba5c6050d86f592c899a0a71760f (patch) | |
tree | 13126bb43fc9a683e673e5a18a694d62470410fe | |
parent | aa824dd10bb645784e2fbf1470e27d3723322fcb (diff) | |
download | hypervideo-pre-69082b38dcb8ba5c6050d86f592c899a0a71760f.tar.lz hypervideo-pre-69082b38dcb8ba5c6050d86f592c899a0a71760f.tar.xz hypervideo-pre-69082b38dcb8ba5c6050d86f592c899a0a71760f.zip |
[phantomjs] Fix bug in 587021cd9f717181b44e881941aca3f8d753758b (#4833)
Authored by: elyse0
-rw-r--r-- | yt_dlp/extractor/openload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/openload.py b/yt_dlp/extractor/openload.py index d2756a006..56b8330ff 100644 --- a/yt_dlp/extractor/openload.py +++ b/yt_dlp/extractor/openload.py @@ -212,7 +212,7 @@ class PhantomJSwrapper: 'jscode': jscode, })) - stdout = self.execute(jscode, video_id, note2) + stdout = self.execute(jscode, video_id, note=note2) with open(self._TMP_FILES['html'].name, 'rb') as f: html = f.read().decode('utf-8') |