Fix ascii error on context menu

This commit is contained in:
Matt 2020-03-19 09:37:47 -04:00
parent d7364afbf5
commit 44808f5dd4

View file

@ -64,7 +64,7 @@ class ContextMenu(xbmcgui.WindowXMLDialog):
if self.getFocusId() == LIST: if self.getFocusId() == LIST:
option = self.list_.getSelectedItem() 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) LOG.info('option selected: %s', self.selected_option)
self.close() self.close()