From 87f8f31003920dffbdf1f0bc38bed9ba700978ac Mon Sep 17 00:00:00 2001 From: Juanjo Salvador Date: Fri, 4 Oct 2019 21:06:12 +0200 Subject: [PATCH] fixed error while parsing sukebei --- NyaaPy/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NyaaPy/utils.py b/NyaaPy/utils.py index 348878d..8ab7e43 100644 --- a/NyaaPy/utils.py +++ b/NyaaPy/utils.py @@ -176,6 +176,8 @@ def parse_sukebei(self, table_rows, limit): 'leechers': block[9], 'completed_downloads': block[10], } + except IndexError as ie: + pass torrents.append(torrent)