diff options
Diffstat (limited to 'resources/tools/iperf/iperf_client.py')
-rw-r--r-- | resources/tools/iperf/iperf_client.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/tools/iperf/iperf_client.py b/resources/tools/iperf/iperf_client.py index 9d9ed9b197..b77dea1179 100644 --- a/resources/tools/iperf/iperf_client.py +++ b/resources/tools/iperf/iperf_client.py @@ -44,7 +44,10 @@ def simple_burst(args): try: for i in range(0, args.instances): cmd = u"exec sudo " - cmd += f"ip netns exec {args.namespace} " if args.namespace else u"" + cmd += ( + f"ip netns exec {args.namespace} " + if args.namespace else u"" + ) cmd += f"iperf3 " cmd += f"--client {args.host} " cmd += f"--bind {args.bind} " |