From 6c947bca07c0fa7d8d6415c43fd3f4851f114794 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 23 May 2012 21:12:24 -0700 Subject: [PATCH] More indent errors - curse you emacs. --- examples/popenpoll.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/popenpoll.py b/examples/popenpoll.py index 30ca4fc..c581c27 100755 --- a/examples/popenpoll.py +++ b/examples/popenpoll.py @@ -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__':