From 56331bead5b8fba793e0e8d99c95cb677920e609 Mon Sep 17 00:00:00 2001 From: croneter Date: Tue, 1 Jan 2019 13:00:30 +0100 Subject: [PATCH] Finally fix deleteting of items from PMS not working - Fixes #587 --- resources/lib/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/context.py b/resources/lib/context.py index bf88e1ba..217d3aa4 100644 --- a/resources/lib/context.py +++ b/resources/lib/context.py @@ -60,7 +60,7 @@ class ContextMenu(xbmcgui.WindowXMLDialog): if action in (ACTION_SELECT_ITEM, ACTION_MOUSE_LEFT_CLICK): if self.getFocusId() == LIST: option = self.list_.getSelectedItem() - self.selected_option = option.getLabel() + self.selected_option = option.getLabel().decode('utf-8') LOG.info('option selected: %s', self.selected_option) self.close()