aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-10-27 12:13:55 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-10-27 12:13:55 +0100
commit749a4fd2fd88017bafca5c298f16123fd0146b40 (patch)
treebe4451184757f9b402e870be52618705c8dccdc0
parent6f71ef580c0d93947817c81a09f6a188631585a1 (diff)
downloadyoutube-dl-749a4fd2fd88017bafca5c298f16123fd0146b40.tar.xz
[facebook] Don't recommend to report the issue if the video is private.
-rw-r--r--youtube_dl/extractor/facebook.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py
index aa2525f17..f8bdfc2d3 100644
--- a/youtube_dl/extractor/facebook.py
+++ b/youtube_dl/extractor/facebook.py
@@ -102,10 +102,11 @@ class FacebookIE(InfoExtractor):
if not m:
m_msg = re.search(r'class="[^"]*uiInterstitialContent[^"]*"><div>(.*?)</div>', webpage)
if m_msg is not None:
- err_msg = u'The video is not available, Facebook said: "%s"' % m_msg.group(1)
+ raise ExtractorError(
+ u'The video is not available, Facebook said: "%s"' % m_msg.group(1),
+ expected=True)
else:
- err_msg = u'Cannot parse data'
- raise ExtractorError(err_msg)
+ raise ExtractorError(u'Cannot parse data')
data = dict(json.loads(m.group(1)))
params_raw = compat_urllib_parse.unquote(data['params'])
params = json.loads(params_raw)