summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-12-20 17:36:06 +0100
committerChristian Poessinger <christian@poessinger.com>2020-12-20 17:36:06 +0100
commit19f16fd36c7d4618a1cc54adca1f58b1c0263e60 (patch)
treea9c6328e4a06c6c5012afe549d4dc231da5e3c08 /python
parent5dfdb8b1008f7198073a6b2c10e506fa1cf5a816 (diff)
downloadvyos-1x-19f16fd36c7d4618a1cc54adca1f58b1c0263e60.tar.gz
vyos-1x-19f16fd36c7d4618a1cc54adca1f58b1c0263e60.zip
ethernet: T3140: remove debug code
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/ethernet.py3
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)