diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-28 05:45:33 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-28 06:01:22 -0500 |
commit | aa62abd5ff33926f44fe4ec9e985ed3d72ea1f9d (patch) | |
tree | 301823a5d57e89561e0761d48cd2cf68a6d501c7 /coverage/control.py | |
parent | 79c66c00cfc98f04b676e8fb32dc5f089a5eff3c (diff) | |
download | python-coveragepy-git-aa62abd5ff33926f44fe4ec9e985ed3d72ea1f9d.tar.gz |
style: fix spelling
un-executed, white space, time stamp.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index bbb26355..37e61cfb 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -812,7 +812,7 @@ class Coverage: """After saving data, look for warnings, post-work, etc. Warn about things that should have happened but didn't. - Look for unexecuted files. + Look for un-executed files. """ # If there are still entries in the source_pkgs_unmatched list, @@ -825,7 +825,7 @@ class Coverage: self._warn("No data was collected.", slug="no-data-collected") # Touch all the files that could have executed, so that we can - # mark completely unexecuted files as 0% covered. + # mark completely un-executed files as 0% covered. if self._data is not None: file_paths = collections.defaultdict(list) for file_path, plugin_name in self._inorout.find_possibly_unexecuted_files(): |