Skip to content
Snippets Groups Projects
Commit 6c947bca authored by Bob Lantz's avatar Bob Lantz
Browse files

More indent errors - curse you emacs.

parent e4514a4e
No related branches found
No related tags found
No related merge requests found
......@@ -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__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment