From 7672f1955eb02429d4fad8bfb643d8923522f467 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Tue, 30 Jan 2018 21:19:37 -0800 Subject: [PATCH] Fix sync table not loading --- plexpy/plextv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/plextv.py b/plexpy/plextv.py index f816ee8a..2b441a98 100644 --- a/plexpy/plextv.py +++ b/plexpy/plextv.py @@ -381,7 +381,7 @@ class PlexTV(object): if isinstance(rating_key_filter, list): rating_key_filter = [str(k) for k in rating_key_filter] - else: + elif rating_key_filter is not None: rating_key_filter = [str(rating_key_filter)] sync_list = self.get_plextv_sync_lists(machine_id, output_format='xml')