diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-06-16 11:24:40 -0400 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2022-06-16 11:24:40 -0400 |
commit | 352713d5948d62b84ca76e4f9a644e956f030a49 (patch) | |
tree | 75a523b356eb8525f2b37e149ad6e03f25205eb5 | |
parent | f0e0a2393b48359bc5f580bce9730225741c7c90 (diff) | |
download | vyos-1x-352713d5948d62b84ca76e4f9a644e956f030a49.tar.gz vyos-1x-352713d5948d62b84ca76e4f9a644e956f030a49.zip |
T2719: correct module path in the neighbor script
-rwxr-xr-x | src/op_mode/neighbor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/neighbor.py b/src/op_mode/neighbor.py index 13ea46b8f..b0b52c082 100755 --- a/src/op_mode/neighbor.py +++ b/src/op_mode/neighbor.py @@ -108,7 +108,7 @@ def reset(family: str, interface: typing.Optional[str], address: typing.Optional if __name__ == '__main__': try: - res = opmode.run(sys.modules[__name__]) + res = vyos.opmode.run(sys.modules[__name__]) if res: print(res) except ValueError as e: |