summaryrefslogtreecommitdiff
path: root/utils/benchmark/benchmark-parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/benchmark/benchmark-parse.py')
-rw-r--r--utils/benchmark/benchmark-parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/benchmark/benchmark-parse.py b/utils/benchmark/benchmark-parse.py
index b2552fe..dd98449 100644
--- a/utils/benchmark/benchmark-parse.py
+++ b/utils/benchmark/benchmark-parse.py
@@ -32,7 +32,7 @@ def measure_parse(text, n, progress_cb):
def measure_file(filename, n):
progress_cb = lambda i: print('.', sep='', end='', flush=True)
with open(filename) as f:
- print('%-20s' % os.path.basename(filename), end='', flush=True)
+ print('%-25s' % os.path.basename(filename), end='', flush=True)
text = f.read()
times = measure_parse(text, n, progress_cb)
print(' Mean: %.3f Stddev: %.3f' % (statistics.mean(times),