summary refs log tree commit diff
path: root/contrib/cmdclient/http.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-07-24 09:57:49 +0100
committerRichard van der Hoff <richard@matrix.org>2020-07-24 09:57:49 +0100
commitbe777e325dedab1ee84e5bbd96f7571b8490a8ec (patch)
tree16fd1b1a1b15bba5f5e78037ddada7525ae8b653 /contrib/cmdclient/http.py
parentMerge branch 'develop' into matrix-org-hotfixes (diff)
parentDowngrade warning on client disconnect to INFO (#7928) (diff)
downloadsynapse-be777e325dedab1ee84e5bbd96f7571b8490a8ec.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'contrib/cmdclient/http.py')
-rw-r--r--contrib/cmdclient/http.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/cmdclient/http.py b/contrib/cmdclient/http.py

index 0e101d2be5..e2534ee584 100644 --- a/contrib/cmdclient/http.py +++ b/contrib/cmdclient/http.py
@@ -14,14 +14,14 @@ # limitations under the License. from __future__ import print_function -from twisted.web.client import Agent, readBody -from twisted.web.http_headers import Headers -from twisted.internet import defer, reactor - -from pprint import pformat import json import urllib +from pprint import pformat + +from twisted.internet import defer, reactor +from twisted.web.client import Agent, readBody +from twisted.web.http_headers import Headers class HttpClient(object):