diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-09 07:38:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 07:38:37 +0200 |
commit | b102408165037d57453ce4928b93958a54c69dcd (patch) | |
tree | f8102ed870909d4f3bebaa92e4380d6a64bf5521 /python | |
parent | d4469e373df1ee5f572cd601cb0aa7fd1bdd7770 (diff) | |
parent | 62210a1de8ae87980f1b1880736d1cded327cb46 (diff) | |
download | vyos-1x-b102408165037d57453ce4928b93958a54c69dcd.tar.gz vyos-1x-b102408165037d57453ce4928b93958a54c69dcd.zip |
Merge pull request #317 from thomas-mangin/T2028-remote
tunnel: T2028: fix remote and registration
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/tunnel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py index 1bbb9eb6a..05060669a 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -31,7 +31,7 @@ def enable_to_on(value): raise ValueError(f'expect enable or disable but got "{value}"') - +@Interface.register class _Tunnel(Interface): """ _Tunnel: private base class for tunnels |