mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-21 17:51:51 +00:00
Apply suggestions from code review
Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
parent
2594f3c2bd
commit
3f45e4c128
1 changed files with 4 additions and 4 deletions
|
@ -48,9 +48,9 @@ class ACastIE(ACastBaseIE):
|
|||
_VALID_URL = r'''(?x)
|
||||
https?://
|
||||
(?:
|
||||
(?:(?:embed|www|shows)\.)?acast\.com/|
|
||||
play\.acast\.com/s/
|
||||
)
|
||||
(?:(?:(?P<embed>embed)|www|shows)\.)?acast\.com|
|
||||
play\.acast\.com/s
|
||||
)/(?(embed)(?:$/)?)
|
||||
(?P<channel>[^/]+)/(?P<id>[^/#?]+)
|
||||
'''
|
||||
_TESTS = [{
|
||||
|
@ -96,7 +96,7 @@ class ACastChannelIE(ACastBaseIE):
|
|||
_VALID_URL = r'''(?x)
|
||||
https?://
|
||||
(?:
|
||||
(?:www|shows\.)?acast\.com/|
|
||||
(?:(?:www|shows)\.)?acast\.com/|
|
||||
play\.acast\.com/s/
|
||||
)
|
||||
(?P<id>[^/#?]+)
|
||||
|
|
Loading…
Reference in a new issue