More indent errors - curse you emacs.

This commit is contained in:
Bob Lantz
2012-05-23 21:12:24 -07:00
parent e4514a4ecb
commit 6c947bca07
+5 -5
View File
@@ -22,11 +22,11 @@ def pmonitorTest( N=3, seconds=10 ):
print "Monitoring output for", seconds, "seconds"
endTime = time() + seconds
for h, line in pmonitor( popens, timeoutms=500 ):
if h:
print '%s: %s' % ( h.name, line ),
if time() >= endTime:
for p in popens.values():
p.send_signal( SIGINT )
if h:
print '%s: %s' % ( h.name, line ),
if time() >= endTime:
for p in popens.values():
p.send_signal( SIGINT )
net.stop()
if __name__ == '__main__':