diff options
Diffstat (limited to 'yt_dlp/extractor/zoom.py')
-rw-r--r-- | yt_dlp/extractor/zoom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/zoom.py b/yt_dlp/extractor/zoom.py index db073d91d..6579f5ea4 100644 --- a/yt_dlp/extractor/zoom.py +++ b/yt_dlp/extractor/zoom.py @@ -35,7 +35,7 @@ class ZoomIE(InfoExtractor): except ExtractorError: form = None if form: - password = self._downloader.params.get('videopassword') + password = self.get_param('videopassword') if not password: raise ExtractorError( 'This video is protected by a passcode, use the --video-password option', expected=True) |