Skip to content

Commit 98fc6ee

Browse files
committed
fix: missed on input -> input_payload on e5362f8e1808
I didn't realize the associate array was being turned into keyword args. So I left x['input'] = input_payload 8-(.
1 parent 2cb4254 commit 98fc6ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def execute(cls, instance, path, method, input_payload):
424424

425425
# zip the varlist into a dictionary, and pass it to the caller
426426
args = dict(zip(list_vars, match_obj.groups()))
427-
args['input'] = input_payload
427+
args['input_payload'] = input_payload
428428
return func(instance, **args)
429429
raise NotFound('Nothing matches the given URI')
430430

0 commit comments

Comments
 (0)