aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-08-21 01:43:22 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-08-21 01:43:22 +0800
commitf738dd7b7c7aefe4d26a65905dee9567a691d262 (patch)
tree2a2258010f869368aefc9bdf46dfd15f26a9ea41 /youtube_dl/extractor/common.py
parentf908b74fa38b2678e26aea128dbd934cd781a9b6 (diff)
downloadyoutube-dl-f738dd7b7c7aefe4d26a65905dee9567a691d262.tar.xz
[common] Remove debugging codes
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index b7437af5a..f731703fb 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1291,12 +1291,9 @@ class InfoExtractor(object):
@classmethod
def _merge_subtitles(kls, subtitle_dict1, subtitle_dict2):
""" Merge two subtitle dictionaries, language by language. """
- print(subtitle_dict1)
- print(subtitle_dict2)
ret = dict(subtitle_dict1)
for lang in subtitle_dict2:
ret[lang] = kls._merge_subtitle_items(subtitle_dict1.get(lang, []), subtitle_dict2[lang])
- print(ret)
return ret
def extract_automatic_captions(self, *args, **kwargs):