diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-11 20:36:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 20:36:04 +0200 |
commit | 7ae606605e2f86288e0c76f440872d9eb2fcc46c (patch) | |
tree | c4dff573a8262022515247f802c667988e2d30a9 /python/vyos/ifconfig/control.py | |
parent | 867fc8d75380fee36dab7d495b835b19e7dafd58 (diff) | |
parent | 8bc12847568582d3b34f3859946470af1344f9ea (diff) | |
download | vyos-1x-7ae606605e2f86288e0c76f440872d9eb2fcc46c.tar.gz vyos-1x-7ae606605e2f86288e0c76f440872d9eb2fcc46c.zip |
Merge pull request #331 from thomas-mangin/T2223-register
completion: T2238: use interface data
Diffstat (limited to 'python/vyos/ifconfig/control.py')
-rw-r--r-- | python/vyos/ifconfig/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/control.py b/python/vyos/ifconfig/control.py index c7a2fa2d6..464cd585e 100644 --- a/python/vyos/ifconfig/control.py +++ b/python/vyos/ifconfig/control.py @@ -18,10 +18,10 @@ import os from vyos.util import debug, debug_msg from vyos.util import popen, cmd -from vyos.ifconfig.register import Register +from vyos.ifconfig.section import Section -class Control(Register): +class Control(Section): _command_get = {} _command_set = {} |