Now works with Python 3.7

error found by slayerinokc in Plex Forums
This commit is contained in:
blacktwin 2020-02-08 13:12:30 -05:00
parent 514151e69b
commit 71c2208fee

View File

@ -132,7 +132,7 @@ if sess.verify is False:
plex = PlexServer(PLEX_URL, PLEX_TOKEN, session=sess)
user_lst = {x.title: x.email if x.email else x.title for x in plex.myPlexAccount().users() if x.title}
user_choices = list(set(user_lst.values() + user_lst.keys()))
user_choices = list(set(user_lst.values())) + list(user_lst.keys())
sections_lst = [x.title for x in plex.library.sections()]
movies_keys = [x.key for x in plex.library.sections() if x.type == 'movie']
show_keys = [x.key for x in plex.library.sections() if x.type == 'show']
@ -401,6 +401,7 @@ if __name__ == "__main__":
for section, users in section_users.items():
print("{} is shared to the following users:\n {}\n".format(section, ", ".join(users)))
exit()
# Share, Unshare, Kill, Add, or Remove
for user in users: