diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-18 10:59:34 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-18 10:59:34 +0100 |
commit | bc2512fa9515a447f97e79b398413b5f3eda36c5 (patch) | |
tree | 6f841f26b06ee87101d16c1a2de0209354ca2182 /graph | |
parent | Disable the ability to GET individualy messages. We need to think about the c... (diff) | |
download | synapse-bc2512fa9515a447f97e79b398413b5f3eda36c5.tar.xz |
Don't bother generating png's
Diffstat (limited to 'graph')
-rw-r--r-- | graph/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/graph.py b/graph/graph.py index da829c388f..220f5eb1d5 100644 --- a/graph/graph.py +++ b/graph/graph.py @@ -113,7 +113,7 @@ def make_graph(pdus, room, filename_prefix): graph.add_edge(state_edge) graph.write('%s.dot' % filename_prefix, format='raw', prog='dot') - graph.write_png("%s.png" % filename_prefix, prog='dot') +# graph.write_png("%s.png" % filename_prefix, prog='dot') graph.write_svg("%s.svg" % filename_prefix, prog='dot') |