From 9b654f034c13d0e8ad133dc72c63259c7886599f Mon Sep 17 00:00:00 2001 From: croneter Date: Thu, 15 Feb 2018 08:15:50 +0100 Subject: [PATCH] Fix Exception text --- resources/lib/playlist_func.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/playlist_func.py b/resources/lib/playlist_func.py index 607fedae..76f1d23b 100644 --- a/resources/lib/playlist_func.py +++ b/resources/lib/playlist_func.py @@ -266,7 +266,7 @@ def verify_kodi_item(plex_id, kodi_item): # Need more info since we don't have kodi_id nor type. Use file path. if (kodi_item['file'].startswith('plugin') or kodi_item['file'].startswith('http')): - raise PlaylistError('Cannot start our plex playlist, aborting') + raise PlaylistError('kodi_item cannot be used for Plex playback') LOG.debug('Starting research for Kodi id since we didnt get one: %s', kodi_item) kodi_id = kodiid_from_filename(kodi_item['file'], v.KODI_TYPE_MOVIE)