Skip to content

Commit

Permalink
Don't pass arguments through to prepare_request
Browse files Browse the repository at this point in the history
  • Loading branch information
bcb committed Feb 21, 2018
1 parent 6f48e59 commit 7ec44ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonrpcclient/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def send(self, request, **kwargs):
request = PreparedRequest(request)
# Prepare request, subclasses can override to prepare the request, and
# set the extra details to include in the log entry
self.prepare_request(request, **kwargs)
self.prepare_request(request)
# Log the request
self.log_request(request, request.log_extra, request.log_format)
# Call abstract method to transport the message, returning either the
Expand Down

0 comments on commit 7ec44ed

Please sign in to comment.