Revision: 3666
Author: pekka.klarck
Date: Sun May 30 05:28:48 2010
Log: cleanup
http://code.google.com/p/robotframework/source/detail?r=3666
Modified:
/trunk/src/robot/running/handlers.py
=======================================
--- /trunk/src/robot/running/handlers.py Sat May 29 10:19:46 2010
+++ /trunk/src/robot/running/handlers.py Sun May 30 05:28:48 2010
@@ -121,7 +121,7 @@
stdout, stderr = capturer.release()
output.log_output(stdout)
output.log_output(stderr)
- if stderr.strip() != '':
+ if stderr:
sys.__stderr__.write(stderr+'\n')
def _run_with_signal_monitoring(self, runner):