diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-28 14:58:51 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-28 14:58:51 +0100 |
commit | b8b52ca09d76e14854535df9a93b25096fcbd36a (patch) | |
tree | 3e9f53ff58047e43dc85a9ef636ae05c21660619 /synapse/streams | |
parent | Fix bug where we used UserID objects instead of strigns (diff) | |
download | synapse-b8b52ca09d76e14854535df9a93b25096fcbd36a.tar.xz |
Add logging to try and figure out what is going on with the presence stuff
Diffstat (limited to 'synapse/streams')
-rw-r--r-- | synapse/streams/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/streams/config.py b/synapse/streams/config.py index 2434844d80..01bab568ff 100644 --- a/synapse/streams/config.py +++ b/synapse/streams/config.py @@ -81,4 +81,4 @@ class PaginationConfig(object): return ( "<PaginationConfig from_tok=%s, to_tok=%s, " "direction=%s, limit=%s>" - ) % (self.from_tok, self.to_tok, self.direction, self.limit) + ) % (self.from_token, self.to_token, self.direction, self.limit) |