diff options
author | Jesús <heckyel@hyperbola.info> | 2021-10-18 17:24:52 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-10-18 17:24:52 -0500 |
commit | f52fb3bceeb9d22b5106c1796fecec474a0cc138 (patch) | |
tree | 90904f8d6621f0d75c95edc68f158bd0c66b6980 /hypervideo_dl/extractor/ivi.py | |
parent | 5122028a4bcac4ae577ef7fbd55ccad5cb34ef5e (diff) | |
download | hypervideo-f52fb3bceeb9d22b5106c1796fecec474a0cc138.tar.lz hypervideo-f52fb3bceeb9d22b5106c1796fecec474a0cc138.tar.xz hypervideo-f52fb3bceeb9d22b5106c1796fecec474a0cc138.zip |
change pycryptodomex to pycryptodome
Diffstat (limited to 'hypervideo_dl/extractor/ivi.py')
-rw-r--r-- | hypervideo_dl/extractor/ivi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/ivi.py b/hypervideo_dl/extractor/ivi.py index 5f8a046..098ab66 100644 --- a/hypervideo_dl/extractor/ivi.py +++ b/hypervideo_dl/extractor/ivi.py @@ -141,7 +141,7 @@ class IviIE(InfoExtractor): elif site == 353: continue elif not pycryptodome_found: - raise ExtractorError('pycryptodomex not found. Please install', expected=True) + raise ExtractorError('pycryptodome not found. Please install', expected=True) elif message: extractor_msg += ': ' + message raise ExtractorError(extractor_msg % video_id, expected=True) |