summary refs log tree commit diff
path: root/contrib/graph/graph3.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-04-10 13:32:49 +0100
committerErik Johnston <erik@matrix.org>2018-04-10 13:32:49 +0100
commita401750ef4e370c7c907ecca32a70dd625c421b7 (patch)
treef9f1e2c7e28957e9b2cb7694a215a49199f0fe27 /contrib/graph/graph3.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentMerge pull request #3082 from matrix-org/erikj/urlencode_paths (diff)
downloadsynapse-a401750ef4e370c7c907ecca32a70dd625c421b7.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'contrib/graph/graph3.py')
-rw-r--r--contrib/graph/graph3.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/graph/graph3.py b/contrib/graph/graph3.py

index 88d92c89d7..7d3b4d7eb6 100644 --- a/contrib/graph/graph3.py +++ b/contrib/graph/graph3.py
@@ -22,6 +22,8 @@ import argparse from synapse.events import FrozenEvent from synapse.util.frozenutils import unfreeze +from six import string_types + def make_graph(file_name, room_id, file_prefix, limit): print "Reading lines" @@ -58,7 +60,7 @@ def make_graph(file_name, room_id, file_prefix, limit): for key, value in unfreeze(event.get_dict()["content"]).items(): if value is None: value = "<null>" - elif isinstance(value, basestring): + elif isinstance(value, string_types): pass else: value = json.dumps(value)