summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-07-29 16:02:11 +0100
committerLars Wirzenius <liw@liw.fi>2011-07-29 16:02:11 +0100
commita4d3b6aa8362002b73135e6826c962143202087f (patch)
tree0300e2cdd8856fb7ad54aa8deb42ddfd41199898
parentfcc3e21fe80b63a6980cfac722552c4568a80d05 (diff)
downloadextrautils-a4d3b6aa8362002b73135e6826c962143202087f.tar.gz
Remove superfluous newline from output.
-rwxr-xr-xbenchmark-cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark-cmd b/benchmark-cmd
index 3fb924f..3a5ee84 100755
--- a/benchmark-cmd
+++ b/benchmark-cmd
@@ -136,7 +136,7 @@ class Benchmarker(cliapp.Application):
self.output.write('MEASURE: %s\n' % cmd)
out = self.runcmd(time_argv)
if self.settings['verbose']:
- self.output.write('%s\n' % out)
+ self.output.write(out)
data = []
while True: