Skip to content

Commit

Permalink
Transformation callback fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
amcgregor committed Apr 19, 2016
1 parent 8a5790a commit 4e4066a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/core/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def _execute_endpoint(self, context, endpoint, signals):
result = e

# Execute return value transformation callbacks.
for ext in signals.transform: result = ext(context, result)
for ext in signals.transform: result = ext(context, endpoint, result)

return result

Expand Down

0 comments on commit 4e4066a

Please sign in to comment.