diff --git a/README.rst b/README.rst index 3d87551..764d5ab 100644 --- a/README.rst +++ b/README.rst @@ -94,9 +94,11 @@ Parsers also have a ``json`` method which returns valid `NetJSON output `__. +* ``netdiff.OlsrParser``: parser for the OLSR 0.6.x jsoninfo plugin Parsers must be initialized with a string which can represent one of the following: diff --git a/netdiff/__init__.py b/netdiff/__init__.py index 9a1cd40..633b9a5 100644 --- a/netdiff/__init__.py +++ b/netdiff/__init__.py @@ -5,4 +5,5 @@ from .parsers.bmx6 import Bmx6Parser # noqa from .parsers.netjson import NetJsonParser # noqa from .parsers.cnml import CnmlParser # noqa +from .parsers.bmx6 import Bmx6Parser # noqa from .utils import diff # noqa