Stripping out an explicit 'r' in file open, it's not really our standard style.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2135 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/unixbench/unixbench.py b/client/tests/unixbench/unixbench.py
index cf8f7b2..3ceac0f 100755
--- a/client/tests/unixbench/unixbench.py
+++ b/client/tests/unixbench/unixbench.py
@@ -37,7 +37,7 @@
utils.system(vars + ' ./Run ' + args)
report_path = os.path.join(self.resultsdir, 'report')
- report = open(report_path, 'r')
+ report = open(report_path)
self.format_results(report, self.keyval)