summary refs log tree commit diff
path: root/synapse/client/v1/base.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-01-22 14:59:08 +0000
committerMark Haines <mark.haines@matrix.org>2015-01-22 14:59:08 +0000
commit1d2016b4a881538aa86f4824f1131dfada186ae0 (patch)
tree238cbc5b79065e485c08d9eec11e72e491b9ce98 /synapse/client/v1/base.py
parentFix manifest. Ignore contrib and docs directories when checking manifest agai... (diff)
downloadsynapse-1d2016b4a881538aa86f4824f1131dfada186ae0.tar.xz
Move client v1 api rest servlets into a "client/v1" directory
Diffstat (limited to '')
-rw-r--r--synapse/client/v1/base.py (renamed from synapse/rest/base.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/base.py b/synapse/client/v1/base.py

index c583945527..d005206b77 100644 --- a/synapse/rest/base.py +++ b/synapse/client/v1/base.py
@@ -15,7 +15,7 @@ """ This module contains base REST classes for constructing REST servlets. """ from synapse.api.urls import CLIENT_PREFIX -from synapse.rest.transactions import HttpTransactionStore +from .transactions import HttpTransactionStore import re import logging