remove admin account name from user_lst

admin playlists handled by --self
This commit is contained in:
Blacktwin 2018-10-07 09:16:30 -04:00
parent bcc7a358a7
commit 3f2e3798ad

View File

@ -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()