diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-25 11:59:05 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-09-25 11:59:05 +0100 |
commit | dc2c97e1a36cc3c2f584223a0d8a3faa810471c0 (patch) | |
tree | 2717f9d69822b439997d95d4a70273c10af21e6b /synapse/rest/client/v1/room.py | |
parent | Add device and appservice tags (diff) | |
download | synapse-dc2c97e1a36cc3c2f584223a0d8a3faa810471c0.tar.xz |
isort
Diffstat (limited to 'synapse/rest/client/v1/room.py')
-rw-r--r-- | synapse/rest/client/v1/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py index 19f150af9d..6bf924dedc 100644 --- a/synapse/rest/client/v1/room.py +++ b/synapse/rest/client/v1/room.py @@ -39,12 +39,12 @@ from synapse.http.servlet import ( parse_json_object_from_request, parse_string, ) +from synapse.logging.opentracing import set_tag from synapse.rest.client.transactions import HttpTransactionCache from synapse.rest.client.v2_alpha._base import client_patterns from synapse.storage.state import StateFilter from synapse.streams.config import PaginationConfig from synapse.types import RoomAlias, RoomID, StreamToken, ThirdPartyInstanceID, UserID -from synapse.logging.opentracing import set_tag logger = logging.getLogger(__name__) |