[common] Remove unused arguments
[youtube-dl] / youtube_dl / extractor / facebook.py
index 1f3e270d9f63ec8cbeff63a2c8be370d06240f0a..bd65e43f2b556f1b26f792817060d8d98a8b44a0 100644 (file)
@@ -215,8 +215,8 @@ class FacebookIE(InfoExtractor):
             dash_manifest = f[0].get('dash_manifest')
             if dash_manifest:
                 formats.extend(self._parse_dash_manifest(
-                    video_id, compat_etree_fromstring(compat_urllib_parse_unquote_plus(dash_manifest)),
-                    default_ns='urn:mpeg:dash:schema:mpd:2011'))
+                    compat_etree_fromstring(compat_urllib_parse_unquote_plus(dash_manifest)),
+                    namespace='urn:mpeg:dash:schema:mpd:2011'))
         if not formats:
             raise ExtractorError('Cannot find video formats')