Fix imports

This commit is contained in:
Erik Johnston 2018-03-14 14:19:23 +00:00
parent 62ad701326
commit 0011ede3b0
2 changed files with 4 additions and 7 deletions

View File

@ -13,11 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import send_event
import membership
from synapse.http.server import JsonResource
from synapse.replication.http import membership, send_event
REPLICATION_PREFIX = "/_synapse/replication"

View File

@ -13,6 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import re
from twisted.internet import defer
from synapse.api.errors import SynapseError, MatrixCodeMessageException
@ -20,9 +23,6 @@ from synapse.http.servlet import RestServlet, parse_json_object_from_request
from synapse.types import Requester, UserID
from synapse.util.distributor import user_left_room, user_joined_room
import logging
import re
logger = logging.getLogger(__name__)