diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-11 00:50:18 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-11 14:55:15 +0100 |
commit | 52d120cfa137887a856025229421b1e01e4a7ecd (patch) | |
tree | 52cfd1ed8856f7d441f110a54279d38366debb3e /src/op_mode | |
parent | c46c19e918edf9304fa65b678e54cb84aca245fc (diff) | |
download | vyos-1x-52d120cfa137887a856025229421b1e01e4a7ecd.tar.gz vyos-1x-52d120cfa137887a856025229421b1e01e4a7ecd.zip |
util: T2226: do not use universal_newlines
Diffstat (limited to 'src/op_mode')
-rwxr-xr-x | src/op_mode/flow_accounting_op.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/op_mode/flow_accounting_op.py b/src/op_mode/flow_accounting_op.py index 7f3ad7476..71fdfc288 100755 --- a/src/op_mode/flow_accounting_op.py +++ b/src/op_mode/flow_accounting_op.py @@ -76,7 +76,7 @@ def _uacctd_running(): # get list of interfaces def _get_ifaces_dict(): # run command to get ifaces list - out = cmd('/bin/ip link show', universal_newlines=True) + out = cmd('/bin/ip link show') # read output ifaces_out = out.splitlines() @@ -95,7 +95,6 @@ def _get_ifaces_dict(): def _get_flows_list(): # run command to get flows list out = cmd(f'/usr/bin/pmacct -s -O json -T flows -p {uacctd_pipefile}', - universal_newlines=True, message='Failed to get flows list') # read output |