aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-01-30 22:45:16 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-01-30 22:45:16 +0800
commitc94678957fbe4483b2b7c8b3e6824cb7a215d42d (patch)
treeb35b19a49abf32bde4e31603779c50fdf32ff3ce /youtube_dl/extractor/common.py
parent16f38a699f7c6d2820720d704a2373ba28c568b1 (diff)
downloadyoutube-dl-c94678957fbe4483b2b7c8b3e6824cb7a215d42d.tar.xz
[common] Remove unused arguments
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index a05efec9e..5a2b7a721 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1330,7 +1330,7 @@ class InfoExtractor(object):
})
return entries
- def _parse_dash_manifest(self, video_id, dash_doc, namespace=None, formats_dict={}, fatal=True):
+ def _parse_dash_manifest(self, dash_doc, namespace=None, formats_dict={}):
def _add_ns(path):
return self._xpath_ns(path, namespace)