summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2019-03-13 18:48:31 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2019-03-13 18:48:31 +0000
commitee8ba397e89d61ec7beeb549391b9ffeaf7e484a (patch)
treea0ab453dcc3852aee0cff953c29ecded56a6ebca /synapse
parentSyntax test (diff)
downloadsynapse-ee8ba397e89d61ec7beeb549391b9ffeaf7e484a.tar.xz
Are you happy now
Diffstat (limited to 'synapse')
-rw-r--r--synapse/http/matrixfederationclient.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py
index cdeb3792b2..f554d5e21c 100644
--- a/synapse/http/matrixfederationclient.py
+++ b/synapse/http/matrixfederationclient.py
@@ -585,7 +585,7 @@ class MatrixFederationHttpClient(object):
         }
 
         response = yield self._send_request_with_optional_trailing_slash(
-            request, try_trailing_slash_on_400, backoff_on_404, **send_request_args,
+            request, try_trailing_slash_on_400, backoff_on_404, send_request_args,
         )
 
         body = yield _handle_json_response(
@@ -705,7 +705,7 @@ class MatrixFederationHttpClient(object):
         }
 
         response = yield self._send_request_with_optional_trailing_slash(
-            request, try_trailing_slash_on_400, False, **send_request_args,
+            request, try_trailing_slash_on_400, False, send_request_args,
         )
 
         body = yield _handle_json_response(