From d18de78367701079a8124896d84524f9b88ac744 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Thu, 3 Feb 2022 16:47:01 -0500 Subject: [PATCH] fix unpack error --- VERSION | 2 +- modules/meta.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 806ba194..05de35b4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.15.1-develop42 +1.15.1-develop43 diff --git a/modules/meta.py b/modules/meta.py index 377ebc3f..dab376bf 100644 --- a/modules/meta.py +++ b/modules/meta.py @@ -310,7 +310,7 @@ class MetadataFile(DataFile): elif auto_type == "trakt_user_lists": auto_list = {} for option in util.parse("Config", "data", dynamic, parent=map_name, methods=methods, datatype="list"): - for k, v in self.config.Trakt.get_user_lists(option): + for k, v in self.config.Trakt.get_user_lists(option).items(): auto_list[k] = v elif auto_type == "trakt_liked_lists": auto_list = self.config.Trakt.get_liked_lists()