From 3c9f1d754d52673434278b46eba5287f493cbdd3 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 25 Sep 2014 19:04:19 +0800 Subject: [PATCH] Fixes shows not being added from tvrage --- lib/tvrage_api/tvrage_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tvrage_api/tvrage_api.py b/lib/tvrage_api/tvrage_api.py index 86d82b8d..adaded13 100644 --- a/lib/tvrage_api/tvrage_api.py +++ b/lib/tvrage_api/tvrage_api.py @@ -592,7 +592,7 @@ class TVRage: ) # check and make sure we have data to process and that it contains a series name - if not len(seriesInfoEt) or (isinstance(seriesInfoEt, dict) and 'seriesname' not in seriesInfoEt['series']): + if not len(seriesInfoEt) or (isinstance(seriesInfoEt, dict) and 'seriesname' not in seriesInfoEt): return False for k, v in seriesInfoEt.items():