diff options
Diffstat (limited to 'youtube_dl/extractor/moevideo.py')
| -rw-r--r-- | youtube_dl/extractor/moevideo.py | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/moevideo.py b/youtube_dl/extractor/moevideo.py index 2ff79b9b8..5a66302f6 100644 --- a/youtube_dl/extractor/moevideo.py +++ b/youtube_dl/extractor/moevideo.py @@ -5,10 +5,12 @@ import json  import re  from .common import InfoExtractor -from ..utils import ( -    ExtractorError, +from ..compat import (      compat_urllib_parse,      compat_urllib_request, +) +from ..utils import ( +    ExtractorError,      int_or_none,  ) @@ -50,7 +52,8 @@ class MoeVideoIE(InfoExtractor):                  'height': 296,                  'duration': 6027,                  'filesize': 588257923, -            } +            }, +            'skip': 'Video has been removed',          },      ]  | 
