diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:22:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:22:03 +0200 |
commit | e91af67ff82a228f3571a60a9037f9ef96c84537 (patch) | |
tree | 533512a57561b11281210bdf44a17f493454a088 /python | |
parent | 83a2fc901136b9da68f50a5a2c9ae1f45dbf5e97 (diff) | |
download | vyos-1x-e91af67ff82a228f3571a60a9037f9ef96c84537.tar.gz vyos-1x-e91af67ff82a228f3571a60a9037f9ef96c84537.zip |
vyos.base: use Warning() helper where applicable
Diffstat (limited to 'python')
-rwxr-xr-x | python/vyos/ifconfig/interface.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 2345457dd..ea7497e92 100755 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -736,8 +736,9 @@ class Interface(Control): if all_rp_filter == 1: global_setting = 'strict' elif all_rp_filter == 2: global_setting = 'loose' - print(f'WARNING: Global source-validation is set to "{global_setting}\n"' \ - 'this overrides per interface setting!') + from vyos.base import Warning + Warning(f'Global source-validation is set to "{global_setting} '\ + f'this overrides per interface setting!') tmp = self.get_interface('rp_filter') if int(tmp) == value: |