Last commit introduced a silly typo. Fixed.
This commit is contained in:
parent
57de91a234
commit
a4adc035f2
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ class ServerSession(Session):
|
||||||
|
|
||||||
for funcname, argtuple in data.items():
|
for funcname, argtuple in data.items():
|
||||||
# loop through the data, calling available functions.
|
# loop through the data, calling available functions.
|
||||||
rc func = OOB_FUNC_MODULE.__dict__.get(funcname, None)
|
func = OOB_FUNC_MODULE.__dict__.get(funcname, None)
|
||||||
if func:
|
if func:
|
||||||
try:
|
try:
|
||||||
outdata[funcname] = func(entity, *argtuple[0], **argtuple[1])
|
outdata[funcname] = func(entity, *argtuple[0], **argtuple[1])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue