Rename 'events_key' to 'room_key' so it matches the name of the event source

This commit is contained in:
Paul "LeoNerd" Evans 2014-08-29 18:39:09 +01:00
parent 490f142d73
commit 4bfdec1eb2
4 changed files with 10 additions and 10 deletions

View file

@ -97,7 +97,7 @@ class RoomID(DomainSpecificString):
class StreamToken(
namedtuple(
"Token",
("events_key", "presence_key", "typing_key")
("room_key", "presence_key", "typing_key")
)
):
_SEPARATOR = "_"