Thanks, I'll apply this in a minute.
On Sun, Jul 12, 2015 at 02:34:43PM -0700, Justin Pettit wrote: > Acked-by: Justin Pettit <[email protected]> > > --Justin > > > > On Jul 12, 2015, at 11:59 AM, Ben Pfaff <[email protected]> wrote: > > > > Signed-off-by: Ben Pfaff <[email protected]> > > --- > > python/build/nroff.py | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/python/build/nroff.py b/python/build/nroff.py > > index 166f2a4..778ce0f 100644 > > --- a/python/build/nroff.py > > +++ b/python/build/nroff.py > > @@ -276,6 +276,8 @@ def block_xml_to_nroff(nodes, para='.PP'): > > s += diagram_to_nroff(node.childNodes, para) > > else: > > s += inline_xml_to_nroff(node, r'\fR') > > + elif node.nodeType == node.COMMENT_NODE: > > + pass > > else: > > raise error.Error("unknown node %s in block xml" % node) > > if s != "" and not s.endswith('\n'): > > -- > > 2.1.3 > > > > _______________________________________________ > > dev mailing list > > [email protected] > > http://openvswitch.org/mailman/listinfo/dev > _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
