diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2021-08-11 00:14:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 09:14:04 +0200 |
commit | 41ae83463e03a6fa0343b62638163819ffbba949 (patch) | |
tree | 104421c9ddba2ec5d682da0d47e0802127585c3e | |
parent | 128d788363a3c9b9acc91fb019d6e51ab6ffd7c5 (diff) | |
download | spack-41ae83463e03a6fa0343b62638163819ffbba949.tar.gz spack-41ae83463e03a6fa0343b62638163819ffbba949.tar.bz2 spack-41ae83463e03a6fa0343b62638163819ffbba949.tar.xz spack-41ae83463e03a6fa0343b62638163819ffbba949.zip |
doc: def llnl.util.filesystem.find fix rst (#25350)
The star was not rendered in the docs.
-rw-r--r-- | lib/spack/llnl/util/filesystem.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py index 3cf6553165..a81425fe96 100644 --- a/lib/spack/llnl/util/filesystem.py +++ b/lib/spack/llnl/util/filesystem.py @@ -1102,14 +1102,14 @@ def find(root, files, recursive=True): Accepts any glob characters accepted by fnmatch: - ======= ==================================== - Pattern Meaning - ======= ==================================== - * matches everything - ? matches any single character - [seq] matches any character in ``seq`` - [!seq] matches any character not in ``seq`` - ======= ==================================== + ========== ==================================== + Pattern Meaning + ========== ==================================== + ``*`` matches everything + ``?`` matches any single character + ``[seq]`` matches any character in ``seq`` + ``[!seq]`` matches any character not in ``seq`` + ========== ==================================== Parameters: root (str): The root directory to start searching from |