summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-07-18 09:47:33 +0100
committerRichard van der Hoff <richard@matrix.org>2016-07-18 09:48:10 +0100
commit6344db659f0d4c57551f1da6456dcaa724d5beb2 (patch)
treea587987f955ba7303c0acce3f88f1806f4068c81
parentMerge pull request #923 from matrix-org/erikj/purge_history (diff)
downloadsynapse-6344db659f0d4c57551f1da6456dcaa724d5beb2.tar.xz
Fix a doc-comment
The `store` in a handler is a generic DataStore, not just an events.StateStore.
-rw-r--r--synapse/handlers/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py

index c904c6c500..d00685c389 100644 --- a/synapse/handlers/_base.py +++ b/synapse/handlers/_base.py
@@ -31,7 +31,7 @@ class BaseHandler(object): Common base class for the event handlers. Attributes: - store (synapse.storage.events.StateStore): + store (synapse.storage.DataStore): state_handler (synapse.state.StateHandler): """