diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-03-08 11:45:50 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-03-08 11:45:50 +0000 |
commit | 7076082ae677b280c5b68df37b1fee2fc72752ff (patch) | |
tree | b7e1321f25c661033af27080404247b68f841bfb /synapse/storage/__init__.py | |
parent | Merge pull request #631 from matrix-org/markjh/py3v1 (diff) | |
download | synapse-7076082ae677b280c5b68df37b1fee2fc72752ff.tar.xz |
Fix relative imports so they work in both py3 and py27
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 6f37a85d09..168eb27b03 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -45,7 +45,7 @@ from .search import SearchStore from .tags import TagsStore from .account_data import AccountDataStore -from util.id_generators import IdGenerator, StreamIdGenerator, ChainedIdGenerator +from .util.id_generators import IdGenerator, StreamIdGenerator, ChainedIdGenerator from synapse.api.constants import PresenceState from synapse.util.caches.stream_change_cache import StreamChangeCache |