diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 18:34:47 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 18:34:47 +0100 |
commit | 1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35 (patch) | |
tree | 399b50b75d5836d88292425721ac5faa40386a47 /synapse/appservice | |
parent | Root the 3PE lookup API within /_matrix/app/unstable instead of at toplevel (diff) | |
download | synapse-1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35.tar.xz |
Move ThirdPartyEntityKind into api.constants so the expectation becomes that the value is significant
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py index 632dc1a4f8..24253e7785 100644 --- a/synapse/appservice/api.py +++ b/synapse/appservice/api.py @@ -14,11 +14,11 @@ # limitations under the License. from twisted.internet import defer +from synapse.api.constants import ThirdPartyEntityKind from synapse.api.errors import CodeMessageException from synapse.http.client import SimpleHttpClient from synapse.events.utils import serialize_event from synapse.util.caches.response_cache import ResponseCache -from synapse.types import ThirdPartyEntityKind import logging import urllib |