Old style exceptions are Python 3 syntax errors

This commit is contained in:
Christian Clauss
2019-09-22 20:16:14 +02:00
committed by Daniel Agar
parent bc35251799
commit 41516fbd55
3 changed files with 9 additions and 12 deletions
+1 -4
View File
@@ -518,7 +518,7 @@ class OutputGraphviz(object):
graph.edge('t_'+topic, 'm_'+module,
color=topic_colors[topic])
graph.render(file_name, view=False)
graph.render(file_name, view=False)
class OutputJSON(object):
@@ -633,6 +633,3 @@ elif args.output == 'graphviz':
output_graphviz.write(args.file+'_pubs.fv', show_subscriptions=False, engine=engine)
else:
print('Error: unknown output format '+args.output)