diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-12-20 17:36:06 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-12-20 17:36:06 +0100 |
commit | 19f16fd36c7d4618a1cc54adca1f58b1c0263e60 (patch) | |
tree | a9c6328e4a06c6c5012afe549d4dc231da5e3c08 /python | |
parent | 5dfdb8b1008f7198073a6b2c10e506fa1cf5a816 (diff) | |
download | vyos-1x-19f16fd36c7d4618a1cc54adca1f58b1c0263e60.tar.gz vyos-1x-19f16fd36c7d4618a1cc54adca1f58b1c0263e60.zip |
ethernet: T3140: remove debug code
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/ethernet.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/ethernet.py b/python/vyos/ifconfig/ethernet.py index 3ef415248..5c8c42461 100644 --- a/python/vyos/ifconfig/ethernet.py +++ b/python/vyos/ifconfig/ethernet.py @@ -321,9 +321,6 @@ class EthernetIf(Interface): # call base class first super().update(config) - import pprint - pprint.pprint(config) - # disable ethernet flow control (pause frames) value = 'off' if 'disable_flow_control' in config else 'on' self.set_flow_control(value) |