diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-30 22:45:16 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-30 22:45:16 +0800 |
commit | c94678957fbe4483b2b7c8b3e6824cb7a215d42d (patch) | |
tree | b35b19a49abf32bde4e31603779c50fdf32ff3ce /youtube_dl/extractor/common.py | |
parent | 16f38a699f7c6d2820720d704a2373ba28c568b1 (diff) |
[common] Remove unused arguments
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
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) |