mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 03:29:24 -05:00
Use str.join() properly
This commit is contained in:
parent
20d0db6cfb
commit
d4145abd33
@ -115,9 +115,8 @@ class StreamToken(
|
||||
raise SynapseError(400, "Invalid Token")
|
||||
|
||||
def to_string(self):
|
||||
return "".join([
|
||||
return self._SEPARATOR.join([
|
||||
str(self.events_key),
|
||||
self._SEPARATOR,
|
||||
str(self.presence_key),
|
||||
])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user