summaryrefslogtreecommitdiff
path: root/src/op_mode/neighbor.py
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2022-06-16 11:24:40 -0400
committerDaniil Baturin <daniil@vyos.io>2022-06-16 11:24:40 -0400
commit352713d5948d62b84ca76e4f9a644e956f030a49 (patch)
tree75a523b356eb8525f2b37e149ad6e03f25205eb5 /src/op_mode/neighbor.py
parentf0e0a2393b48359bc5f580bce9730225741c7c90 (diff)
downloadvyos-1x-352713d5948d62b84ca76e4f9a644e956f030a49.tar.gz
vyos-1x-352713d5948d62b84ca76e4f9a644e956f030a49.zip
T2719: correct module path in the neighbor script
Diffstat (limited to 'src/op_mode/neighbor.py')
-rwxr-xr-xsrc/op_mode/neighbor.py2
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: