kwargs doesn't like commas on calling funcs either. TIL

pull/4840/head
Andrew Morgan 2019-03-20 14:13:32 +00:00
parent bb52a2e653
commit 2150151abe
1 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ class MatrixFederationHttpClient(object):
""" """
try: try:
response = yield self._send_request( response = yield self._send_request(
request, backoff_on_404=backoff_on_404, **send_request_args, request, backoff_on_404=backoff_on_404, **send_request_args
) )
except HttpResponseException as e: except HttpResponseException as e:
# Received an HTTP error > 300. Check if it meets the requirements # Received an HTTP error > 300. Check if it meets the requirements
@ -237,7 +237,7 @@ class MatrixFederationHttpClient(object):
request.path += "/" request.path += "/"
response = yield self._send_request( response = yield self._send_request(
request, backoff_on_404=backoff_on_404, **send_request_args, request, backoff_on_404=backoff_on_404, **send_request_args
) )
defer.returnValue(response) defer.returnValue(response)