Fix FutureWarning for etree xmls

This commit is contained in:
Croneter 2018-05-01 15:24:58 +02:00
parent 1de2390cdd
commit df2b3810bf

View file

@ -81,7 +81,7 @@ def create_kodi_playlist(plex_id=None):
Returns the playlist or raises PL.PlaylistError Returns the playlist or raises PL.PlaylistError
""" """
xml = PL.get_PMS_playlist(PL.Playlist_Object(), playlist_id=plex_id) xml = PL.get_PMS_playlist(PL.Playlist_Object(), playlist_id=plex_id)
if not xml: if xml is None:
LOG.error('Could not get Plex playlist %s', plex_id) LOG.error('Could not get Plex playlist %s', plex_id)
return return
api = API(xml) api = API(xml)
@ -280,7 +280,7 @@ def full_sync():
LOG.info('Starting playlist full sync') LOG.info('Starting playlist full sync')
# Get all Plex playlists # Get all Plex playlists
xml = PL.get_all_playlists() xml = PL.get_all_playlists()
if not xml: if xml is None:
return False return False
# For each playlist, check Plex database to see whether we already synced # For each playlist, check Plex database to see whether we already synced
# before. If yes, make sure that hashes are identical. If not, sync it. # before. If yes, make sure that hashes are identical. If not, sync it.