X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Fovsdb-dot.in;h=571ac8f0cffe0120045524fa052a22cad8e2a796;hb=404c169247b1c3ac2ebad887f0421478a6cef924;hp=4569f2efdd5bb8d1769ae837d25c327cdcaafca1;hpb=a5eef57e2c43a427b901baa6f0b79d00d2c222d3;p=openvswitch diff --git a/ovsdb/ovsdb-dot.in b/ovsdb/ovsdb-dot.in index 4569f2ef..571ac8f0 100755 --- a/ovsdb/ovsdb-dot.in +++ b/ovsdb/ovsdb-dot.in @@ -29,6 +29,7 @@ def schemaToDot(schemaFile): print '\tsize="6.5,4";' print '\tmargin="0";' print "\tnode [shape=box];" + print "\tedge [dir=none, arrowhead=none, arrowtail=none];" print "\t%s;" % tableName for columnName, column in table.columns.iteritems(): if column.type.value: @@ -67,14 +68,14 @@ if __name__ == "__main__": print "ovsdb-dot (Open vSwitch) @VERSION@" else: sys.exit(0) - + if len(args) != 1: sys.stderr.write("%s: exactly 1 non-option argument required " "(use --help for help)\n" % argv0) sys.exit(1) schemaToDot(args[0]) - + except ovs.db.error.Error, e: sys.stderr.write("%s: %s\n" % (argv0, e.msg)) sys.exit(1)