This is an automated email from the ASF dual-hosted git repository. akitouni pushed a commit to branch abderrahim/cleanup in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 0795f4bfec5ea69af326b06c09bc675a30f70923 Author: Abderrahim Kitouni <[email protected]> AuthorDate: Fri Sep 20 08:38:19 2024 +0100 utils: fix syntax warning --- src/buildstream/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/buildstream/utils.py b/src/buildstream/utils.py index 320d5332f..a8a77cace 100644 --- a/src/buildstream/utils.py +++ b/src/buildstream/utils.py @@ -240,9 +240,9 @@ def glob(paths: Iterable[str], pattern: str) -> Iterator[str]: +--------+------------------------------------------------------------------+ | Meta | Description | +========+==================================================================+ - | \* | Zero or more of any character, excepting path separators | + | * | Zero or more of any character, excepting path separators | +--------+------------------------------------------------------------------+ - | \** | Zero or more of any character, including path separators | + | ** | Zero or more of any character, including path separators | +--------+------------------------------------------------------------------+ | ? | One of any character, except for path separators | +--------+------------------------------------------------------------------+
