diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-05-26 22:21:55 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-05-26 22:22:58 +0700 |
commit | 2ce35d9f43328e82108bae6661c2ac0ba2a0498c (patch) | |
tree | 80ae43712d0740cea01f6f3f10d791c7732813ed | |
parent | f16f48779cbad4a6d39a908e131a8d55941d1671 (diff) |
[cammodels] Add another error pattern
-rw-r--r-- | youtube_dl/extractor/cammodels.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cammodels.py b/youtube_dl/extractor/cammodels.py index 4f1b88d14..17f7ac043 100644 --- a/youtube_dl/extractor/cammodels.py +++ b/youtube_dl/extractor/cammodels.py @@ -28,6 +28,7 @@ class CamModelsIE(InfoExtractor): ERRORS = ( ("I'm offline, but let's stay connected", 'This user is currently offline'), ('in a private show', 'This user is in a private show'), + ('is currently performing LIVE', 'This model is currently performing live'), ) for pattern, message in ERRORS: if pattern in webpage: |