Fix deleting Plex playlists
This commit is contained in:
parent
2f25453fe2
commit
5fd6587ff7
1 changed files with 1 additions and 1 deletions
|
@ -870,7 +870,7 @@ def delete_playlist_from_pms(playlist):
|
||||||
Deletes the playlist from the PMS
|
Deletes the playlist from the PMS
|
||||||
"""
|
"""
|
||||||
xml = DU().downloadUrl("{server}/%ss/%s" %
|
xml = DU().downloadUrl("{server}/%ss/%s" %
|
||||||
(playlist.kind, playlist.id),
|
(playlist.kind.lower(), playlist.id),
|
||||||
action_type="DELETE")
|
action_type="DELETE")
|
||||||
try:
|
try:
|
||||||
xml.attrib
|
xml.attrib
|
||||||
|
|
Loading…
Reference in a new issue