diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-11 17:08:57 +0000 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-11 17:08:57 +0000 |
commit | 099e4b88d8053fbe5a661706a92a50e2c25f4dd6 (patch) | |
tree | 4b970847fae6525a9a77025fa412bb9773eb84d3 /synapse/storage/feedback.py | |
parent | Again, underscore, not hyphen (diff) | |
download | synapse-099e4b88d8053fbe5a661706a92a50e2c25f4dd6.tar.xz |
Add a description to storage layer's _execute_and_decode()
Diffstat (limited to 'synapse/storage/feedback.py')
-rw-r--r-- | synapse/storage/feedback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/feedback.py b/synapse/storage/feedback.py index fcf011b234..8eab769b71 100644 --- a/synapse/storage/feedback.py +++ b/synapse/storage/feedback.py @@ -37,7 +37,7 @@ class FeedbackStore(SQLBaseStore): "WHERE feedback.target_event_id = ? " ) - rows = yield self._execute_and_decode(sql, event_id) + rows = yield self._execute_and_decode("get_feedback_for_event", sql, event_id) defer.returnValue( [ |