diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-07-28 19:48:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-07-28 19:48:10 -0400 |
commit | 7fe106b9fef26478ba10a6f206baf70eee201d4a (patch) | |
tree | a6e35aafeeea8887899433f5067f00569950ff44 /coverage/data.py | |
parent | c5c1ba084b0b548ff8869cbc086e81608c329eb6 (diff) | |
download | python-coveragepy-git-7fe106b9fef26478ba10a6f206baf70eee201d4a.tar.gz |
fix: correct previous refactorings
File names should not be rendered with !r, since on Windows that will
produce double backslashes, which only confuses people.
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/data.py b/coverage/data.py index 7ba51dc8..752822b7 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -91,7 +91,7 @@ def combine_parallel_data(data, aliases=None, data_paths=None, strict=False, kee pattern = os.path.join(os.path.abspath(p), localdot) files_to_combine.extend(glob.glob(pattern)) else: - raise CoverageException(f"Couldn't combine from non-existent path {p!r}") + raise CoverageException(f"Couldn't combine from non-existent path '{p}'") if strict and not files_to_combine: raise CoverageException("No data to combine") |