aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2012-12-05 10:56:12 -0600
committerClark Williams <williams@redhat.com>2012-12-05 10:56:12 -0600
commitd02630c32dcca84256abba58c0ee7545da6b4af8 (patch)
tree985bb65acff29625a9600d0348d4e4bf631de737
parentcd298b146bff8b206d51e482c747603066c5852e (diff)
downloadrteval-d02630c32dcca84256abba58c0ee7545da6b4af8.tar.gz
fix incorrect variable name in hackbench.py
Add another '_' to the stdout and stderr logging file handles to match usage. Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval/modules/loads/hackbench.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rteval/modules/loads/hackbench.py b/rteval/modules/loads/hackbench.py
index bf514b9..c3da7d9 100644
--- a/rteval/modules/loads/hackbench.py
+++ b/rteval/modules/loads/hackbench.py
@@ -74,8 +74,8 @@ class Hackbench(CommandLineLoad):
self.__nullfp = os.open("/dev/null", os.O_RDWR)
if self._logging:
- self._out = self.open_logfile("hackbench.stdout")
- self._err = self.open_logfile("hackbench.stderr")
+ self.__out = self.open_logfile("hackbench.stdout")
+ self.__err = self.open_logfile("hackbench.stderr")
else:
self.__out = self.__err = self.__nullfp