24410: val missing from parexec onValueChange callback

Minor issue:
In the default function definition of the onValueChange callback in the Parameter Execute DAT, the val argument is missing. This means if a user wants to use val in his callback code he will get the error:

NameError: name 'val' is not defined

The definition is now:

def onValueChange(par, prev): return

and it should be:

def onValueChange(par, val, prev): return

Idz,

I think this is related:
viewtopic.php?f=12&t=12426

Ah thanks Matthew, I missed that post.
I guess then the howto in the top of the DAT could be made a bit more clear