mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
kwargs doesn't like commas on calling funcs either. TIL
This commit is contained in:
parent
bb52a2e653
commit
2150151abe
@ -220,7 +220,7 @@ class MatrixFederationHttpClient(object):
|
||||
"""
|
||||
try:
|
||||
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:
|
||||
# Received an HTTP error > 300. Check if it meets the requirements
|
||||
@ -237,7 +237,7 @@ class MatrixFederationHttpClient(object):
|
||||
request.path += "/"
|
||||
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user