diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 22:47:19 +0000 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 23:04:18 +0000 |
commit | 8f39784c847801c0b766a0c9289da0976ffd0604 (patch) | |
tree | f99c84bbf2a78aa3e9278f276a18336cad047520 /python/vyos/ifconfig/ethernet.py | |
parent | 71561a27a0338cba7c54ea8ae9bf14b75006ddbd (diff) | |
download | vyos-1x-8f39784c847801c0b766a0c9289da0976ffd0604.tar.gz vyos-1x-8f39784c847801c0b766a0c9289da0976ffd0604.zip |
ifconfig: T2154: fixing failure to start-stop-daemon
Diffstat (limited to 'python/vyos/ifconfig/ethernet.py')
-rw-r--r-- | python/vyos/ifconfig/ethernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/ethernet.py b/python/vyos/ifconfig/ethernet.py index 8b6b6d9db..30e3a3bef 100644 --- a/python/vyos/ifconfig/ethernet.py +++ b/python/vyos/ifconfig/ethernet.py @@ -120,7 +120,7 @@ class EthernetIf(VLANIf): try: # An exception will be thrown if the settings are not changed return self._cmd(cmd) - except CalledProcessError: + except RuntimeError: pass def set_speed_duplex(self, speed, duplex): |