diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-15 13:55:22 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-15 13:55:22 +0000 |
commit | c8dd3314d673fce90a53520475cdb19d5358dd34 (patch) | |
tree | bb84bfee9a2c83daa2ccb182de0169a3f4dc5e95 /scripts | |
parent | Remove unused imports (diff) | |
download | synapse-c8dd3314d673fce90a53520475cdb19d5358dd34.tar.xz |
Fix bug where we ignored event_edge_hashes table
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/check_event_hash.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/check_event_hash.py b/scripts/check_event_hash.py index 7c32f8102a..679afbd268 100644 --- a/scripts/check_event_hash.py +++ b/scripts/check_event_hash.py @@ -18,6 +18,9 @@ class dictobj(dict): def get_full_dict(self): return dict(self) + def get_pdu_json(self): + return dict(self) + def main(): parser = argparse.ArgumentParser() |