Fix ascii error on context menu

This commit is contained in:
Matt 2020-03-19 09:37:47 -04:00
parent d7364afbf5
commit 44808f5dd4
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class ContextMenu(xbmcgui.WindowXMLDialog):
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()