From 7fe106b9fef26478ba10a6f206baf70eee201d4a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 28 Jul 2021 19:48:10 -0400 Subject: fix: correct previous refactorings File names should not be rendered with !r, since on Windows that will produce double backslashes, which only confuses people. --- coverage/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/data.py') 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") -- cgit v1.2.1