summaryrefslogtreecommitdiffstats
path: root/test/tools/dump_coveralls.py
diff options
context:
space:
mode:
authorJosh Soref <2119212+jsoref@users.noreply.github.com>2022-02-22 17:01:28 -0500
committerGitHub <noreply@github.com>2022-02-22 22:01:28 +0000
commit2b8e6958f40ef36c1508118ac36a43694283a83c (patch)
treefa9a9b6843546bdb297b00bc78b83ab4c318f724 /test/tools/dump_coveralls.py
parent85faeb34719e2b0898d319b02416f669d70f4562 (diff)
downloadrspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.tar.gz
rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.zip
Spelling (#4086)
[Rework] Massive spelling fix from @jsoref
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