diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-28 15:51:18 +0000 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-28 15:51:18 +0000 |
commit | 5921dc3911c8e542b00599b51cb63eec2a233004 (patch) | |
tree | 458e1ffbf3e65412c73c392b9ed6a20ab18206c0 /python | |
parent | b53d0e10d0fc7ed9d18833008da1d4a1d2520a78 (diff) | |
download | vyos-1x-5921dc3911c8e542b00599b51cb63eec2a233004.tar.gz vyos-1x-5921dc3911c8e542b00599b51cb63eec2a233004.zip |
ifconfig: T2057: fix import for run show interfaces wireguard
when ifconfig.py was broken down in multiple files an import
was missed. This fixes this import
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/wireguard.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/wireguard.py b/python/vyos/ifconfig/wireguard.py index 8cf1ff58c..7f123f9b4 100644 --- a/python/vyos/ifconfig/wireguard.py +++ b/python/vyos/ifconfig/wireguard.py @@ -18,6 +18,7 @@ import os import vyos from vyos.ifconfig.interface import Interface +from vyos.interfaces import wireguard_dump from datetime import timedelta import time from hurry.filesize import size,alternative @@ -107,7 +108,7 @@ class WireGuardIf(Interface): return self._cmd(cmd) def op_show_interface(self): - wgdump = vyos.interfaces.wireguard_dump().get( + wgdump = wireguard_dump().get( self.config['ifname'], None) c = vyos.config.Config() |