From 370b183d816ebd4b56fc176a4fdad52a8188f7a8 Mon Sep 17 00:00:00 2001 From: Mort Yao Date: Fri, 27 Nov 2015 22:05:12 +0100 Subject: [PATCH] [56] the actual hd type is "wvga", close #775 --- src/you_get/extractors/w56.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/you_get/extractors/w56.py b/src/you_get/extractors/w56.py index 61472bf2..2621d7e3 100644 --- a/src/you_get/extractors/w56.py +++ b/src/you_get/extractors/w56.py @@ -12,7 +12,7 @@ def w56_download_by_id(id, title = None, output_dir = '.', merge = True, info_on assert title hd = info['hd'] assert hd in (0, 1, 2) - hd_types = [['normal', 'qvga'], ['clear', 'vga'], ['super', 'dvga']][hd] + hd_types = [['normal', 'qvga'], ['clear', 'vga'], ['super', 'wvga']][hd] files = [x for x in info['rfiles'] if x['type'] in hd_types] assert len(files) == 1 size = int(files[0]['filesize'])