summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-23 10:31:16 +0000
committerErik Johnston <erik@matrix.org>2018-02-23 10:31:16 +0000
commitbb73f55fc6559658080d6cdd5672506fda7843ab (patch)
tree8977968a4222659e234935f7ade6f0ebc86b1d54 /synapse/replication
parentSplit AccountDataStore and TagStore (diff)
downloadsynapse-bb73f55fc6559658080d6cdd5672506fda7843ab.tar.xz
Use absolute imports
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/account_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/slave/storage/account_data.py b/synapse/replication/slave/storage/account_data.py

index 6c95261aa5..f76dc5a56b 100644 --- a/synapse/replication/slave/storage/account_data.py +++ b/synapse/replication/slave/storage/account_data.py
@@ -13,8 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -from ._base import BaseSlavedStore -from ._slaved_id_tracker import SlavedIdTracker +from synapse.replication.slave.storage._base import BaseSlavedStore +from synapse.replication.slave.storage._slaved_id_tracker import SlavedIdTracker from synapse.storage.account_data import AccountDataWorkerStore from synapse.storage.tags import TagsWorkerStore