pep8: Fix E121/126, continuation line indention

This commit is contained in:
Brandon Heller
2012-11-13 16:08:26 -08:00
parent 33d548b412
commit c0095746af
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ def bwtest( cpuLimits, period_us=100000, seconds=5 ):
server.cmd( 'iperf -s -p 5001 &' )
waitListening( client, server, 5001 )
result = client.cmd( 'iperf -yc -t %s -c %s' % (
seconds, server.IP() ) ).split( ',' )
seconds, server.IP() ) ).split( ',' )
bps = float( result[ -1 ] )
server.cmdPrint( 'kill %iperf' )
net.stop()