From 3f2e3798ad096265274f50b0ee42f7c5f821180d Mon Sep 17 00:00:00 2001 From: Blacktwin Date: Sun, 7 Oct 2018 09:16:30 -0400 Subject: [PATCH] remove admin account name from user_lst admin playlists handled by --self --- fun/playlist_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fun/playlist_manager.py b/fun/playlist_manager.py index 89215b6..9a5dbc2 100644 --- a/fun/playlist_manager.py +++ b/fun/playlist_manager.py @@ -99,7 +99,7 @@ if sess.verify is False: plex = PlexServer(PLEX_URL, PLEX_TOKEN, session=sess) account = plex.myPlexAccount() -user_lst = [x.title for x in plex.myPlexAccount().users()] + [plex.myPlexAccount().title] +user_lst = [x.title for x in plex.myPlexAccount().users()] section_lst = [x.title for x in plex.library.sections()] today = datetime.datetime.now().date()