| Index: tools/idl_parser/idl_node.py
|
| diff --git a/tools/idl_parser/idl_node.py b/tools/idl_parser/idl_node.py
|
| index 83aefa52adcc77f2ed0679993e46896381816e1f..e50fc4e1baead7d9b5498c4138e83211d0af2946 100755
|
| --- a/tools/idl_parser/idl_node.py
|
| +++ b/tools/idl_parser/idl_node.py
|
| @@ -201,7 +201,7 @@ class IDLNode(object):
|
| child._parent = self
|
| self._children.append(child)
|
| continue
|
| - raise RuntimeError('Adding child of type .\n' % type(child).__name__)
|
| + raise RuntimeError('Adding child of type %s.\n' % type(child).__name__)
|
|
|
|
|
| #
|
|
|