1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2026-01-30 10:42:05 +00:00

[extractor/listennotes] Add extractor (#5310)

Closes #5262
Authored by: lksj, pukkandan
This commit is contained in:
Alex Karabanov
2022-11-06 22:30:59 +04:00
committed by GitHub
parent c94df4d19d
commit 0d2a0ecac3
3 changed files with 88 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ passthrough_module(__name__, '._legacy', callback=lambda attr: warnings.warn(
# HTMLParseError has been deprecated in Python 3.3 and removed in
# Python 3.5. Introducing dummy exception for Python >3.5 for compatible
# and uniform cross-version exception handling
class compat_HTMLParseError(Exception):
class compat_HTMLParseError(ValueError):
pass