From 44f4433cadbfff22595cad9ddd1d6a58a6b520fc Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Fri, 16 Aug 2024 04:01:50 +1000 Subject: [PATCH] more typos in streamlog archive middleware --- sheetsync/sheetsync/streamlog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sheetsync/sheetsync/streamlog.py b/sheetsync/sheetsync/streamlog.py index 928a8f6..33cda0a 100644 --- a/sheetsync/sheetsync/streamlog.py +++ b/sheetsync/sheetsync/streamlog.py @@ -60,11 +60,11 @@ class StreamLogPlaylistsMiddleware(Middleware): for tag in self.client.get_tags(): rows.append({ "id": tag["id"], - "sheet_name": playlists_worksheet, + "sheet_name": self.playlists_worksheet, "_parse_errors": [], # Special case for the "all everything" list, otherwise all playlists have a single tag. "tags": [] if tag["tag"] == "" else [tag["tag"]], - "playlist_id": tag["playlist"] + "playlist_id": tag["playlist"], "description": tag["description"], "name": "unknown", # TODO missing in StreamLog "show_in_description": False, # TODO missing in StreamLog