From 7b578603ca52be3d4005f7315868052b8ad14669 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Sun, 11 Sep 2016 11:29:51 +0200 Subject: [PATCH] Fix TypeError --- resources/lib/librarysync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/librarysync.py b/resources/lib/librarysync.py index 5db3f028..f277162a 100644 --- a/resources/lib/librarysync.py +++ b/resources/lib/librarysync.py @@ -1620,7 +1620,7 @@ class LibrarySync(Thread): for plextype in typus: items.extend(emby_db.itemsByType(plextype)) # Shuffle the list to not always start out identically - items = shuffle(items) + shuffle(items) for item in items: self.fanartqueue.put({ 'itemId': item['plexId'],