diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-09-04 22:48:22 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-09-12 21:51:33 +0900 |
commit | 70d3ddfd662d9c100b37b9875de1c0c256699931 (patch) | |
tree | 0c637520c83e650aa7e72874abf5fedbf3b7eff7 /tools | |
parent | c33f14282cd4ae1c6dff7f7a5bfe14ce3ea32597 (diff) |
pyang_plugins: Fix an import path
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pyang_plugins/bgpyang2golang.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pyang_plugins/bgpyang2golang.py b/tools/pyang_plugins/bgpyang2golang.py index 80dcce5a..62497f09 100644 --- a/tools/pyang_plugins/bgpyang2golang.py +++ b/tools/pyang_plugins/bgpyang2golang.py @@ -768,7 +768,7 @@ def generate_header(fd): print('import (', file=fd) print('"fmt"', file=fd) print('', file=fd) - print('"github.com/osrg/gobgp/packet/bgp"', file=fd) + print('"github.com/osrg/gobgp/pkg/packet/bgp"', file=fd) print(')', file=fd) print('', file=fd) |