Today in forum gisclub.tv I saw this crashlog:
Traceback (most recent call last):
File "/usr/lib/enigma2/python/Screens/Hotkey.py", line 322, in action
res = self.actions[action](action)
File "/usr/lib/enigma2/python/Screens/Hotkey.py", line 338, in hotkeyGlobal
function = list(function for function in getHotkeyFunctions() if function[1] == x )
File "/usr/lib/enigma2/python/Screens/Hotkey.py", line 129, in getHotkeyFunctions
hotkeyFunctions.append((plugin[0], "MenuPlugin/system/" + plugin[2]))
TypeError: cannot concatenate 'str' and 'NoneType' objects
I do not know who this user is installed, as to myself, I have not seen such error, but maybe for system plugins needs to add an additional check:
for plugin in plugins.getPluginsForMenu("system"):
if plugin[2]:
hotkeyFunctions.append((plugin[0], "MenuPlugin/system/" + plugin[2]))
And maybe this check also needs for MenuPlugin/scan?