summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2019-01-17 14:11:24 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2019-01-22 11:00:04 +0000
commit75942af1dbe1a4aa65fc986e5662e12c1337b7de (patch)
tree5890dbe6776b45e9f301f0e66b14f228a21b4e11 /synapse/handlers
parentRefactor and bugfix for resove_service (#4427) (diff)
downloadsynapse-75942af1dbe1a4aa65fc986e5662e12c1337b7de.tar.xz
Fix typo
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/room.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py

index cb8c5f77dd..8898602eeb 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py
@@ -125,7 +125,7 @@ class RoomCreationHandler(BaseHandler): ) yield self.auth.check_from_context(tombstone_event, tombstone_context) - yield self.clone_exiting_room( + yield self.clone_existing_room( requester, old_room_id=old_room_id, new_room_id=new_room_id, @@ -230,7 +230,7 @@ class RoomCreationHandler(BaseHandler): ) @defer.inlineCallbacks - def clone_exiting_room( + def clone_existing_room( self, requester, old_room_id, new_room_id, new_room_version, tombstone_event_id, ):