Traceback (most recent call last):
File "<string>", line 739, in applyShortcuts
File "<string>", line 245, in globalShortcuts
ValueError: Empty group name
This is due to 'IndexList' being empty, thus it's returned as '' (empty string) -- that just after is transformed in a list containing a single value equal to empty string due to split.
I guess it could be good after the mentioned line to check if index is an empty string and immediately return if it's the case.
https://github.com/triplus/ShortCuts/blob/314be7067ada598a2f99e7ad0591b640189cfea1/InitGui.py#L238
Each time I change workbench, I see this error :
This is due to 'IndexList' being empty, thus it's returned as
''
(empty string) -- that just after is transformed in a list containing a single value equal to empty string due tosplit
. I guess it could be good after the mentioned line to check ifindex
is an empty string and immediately return if it's the case.This said, I don't know how this arised.