forked from MirrorHub/synapse
Minor tweaks based on PR feedback.
This commit is contained in:
parent
14d413752b
commit
f518324426
2 changed files with 5 additions and 4 deletions
|
@ -80,11 +80,11 @@ class ApplicationServiceApi(SimpleHttpClient):
|
|||
response = None
|
||||
try:
|
||||
response = yield self.put_json(
|
||||
uri,
|
||||
{
|
||||
uri=uri,
|
||||
json_body={
|
||||
"events": events
|
||||
},
|
||||
{
|
||||
args={
|
||||
"access_token": service.hs_token
|
||||
})
|
||||
if response: # just an empty json object
|
||||
|
|
|
@ -95,7 +95,8 @@ class SimpleHttpClient(object):
|
|||
Deferred: Succeeds when we get *any* 2xx HTTP response, with the
|
||||
HTTP body as JSON.
|
||||
Raises:
|
||||
On a non-2xx HTTP response.
|
||||
On a non-2xx HTTP response. The response body will be used as the
|
||||
error message.
|
||||
"""
|
||||
if len(args):
|
||||
query_bytes = urllib.urlencode(args, True)
|
||||
|
|
Loading…
Reference in a new issue