diff options
author | Oleg Höfling <oleg.hoefling@gmail.com> | 2020-02-23 00:13:37 +0100 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-02-22 19:42:36 -0500 |
commit | bbf3c784d25771cdada061f681f64ba5790e890f (patch) | |
tree | 589315a150b32e38a557a539254796f621202259 | |
parent | 25c0f660c256bd4d0224e7b58b40acc5aa4a7428 (diff) | |
download | python-coveragepy-git-bbf3c784d25771cdada061f681f64ba5790e890f.tar.gz |
escape backslashes in windows filepath in config docs
Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com>
-rw-r--r-- | doc/config.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/config.rst b/doc/config.rst index 6091867d..47271745 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -240,7 +240,7 @@ patterns to match against the paths of collected data, or they can be absolute or relative file paths on the current machine. In this example, data collected for "/jenkins/build/1234/src/module.py" will be -combined with data for "c:\myproj\src\module.py", and will be reported against +combined with data for "c:\\myproj\\src\\module.py", and will be reported against the source file found at "src/module.py". If you specify more than one list of paths, they will be considered in order. |