Skip to content
Snippets Groups Projects
Commit 11691d5a authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Bugfix - recursive profile alt handler lookup was passing mode/evType

parameters the wrong way around.
parent bf3ff977
No related branches found
No related tags found
No related merge requests found
...@@ -358,7 +358,8 @@ class Profile(actions.ActionProvider): ...@@ -358,7 +358,8 @@ class Profile(actions.ActionProvider):
# An alternate handler has # An alternate handler has
# been specified - look it up # been specified - look it up
if alt is not None: if alt is not None:
return self.__getHandler(ev, *alt) altMode, altEvType = alt
return self.__getHandler(ev, altEvType, altMode)
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment