aboutsummaryrefslogtreecommitdiffstats
path: root/test/tools/dump_coveralls.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/tools/dump_coveralls.py')
-rwxr-xr-xtest/tools/dump_coveralls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/dump_coveralls.py b/test/tools/dump_coveralls.py
index c453d0511..a96dc9242 100755
--- a/test/tools/dump_coveralls.py
+++ b/test/tools/dump_coveralls.py
@@ -30,7 +30,7 @@ def dump_file(json_file):
warn("{}: no source_files, not a coveralls.io payload?".format(json_file))
return 1
- print("{} ({} soource files)".format(json_file, len(data['source_files'])))
+ print("{} ({} source files)".format(json_file, len(data['source_files'])))
for src_file in sorted(data['source_files'], key=itemgetter('name')):
covered_lines = not_skipped_lines = 0