From b0458c6e0917205d23fc546006a6a5c9a38022aa Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 2 Feb 2017 09:09:27 -0500 Subject: [PATCH] FIX: Fix for deleting series from the Manage Comics page --- mylar/webserve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/webserve.py b/mylar/webserve.py index f7d6c602..ac8426ce 100755 --- a/mylar/webserve.py +++ b/mylar/webserve.py @@ -2284,7 +2284,7 @@ class WebInterface(object): comyr = k.find('[') ComicYear = re.sub('[\[\]]', '', k[comyr:]).strip() ComicName = k[:comyr].strip() - if len(v) > 1: + if isinstance(v, list): #because multiple items can have the same comicname & year, we need to make sure they're all unique entries for x in v: clist.append({'ComicName': ComicName,