From 7811b410bdc9215e8047d8d42b2124b0a3f89eb5 Mon Sep 17 00:00:00 2001 From: Mike Hendricks Date: Mon, 5 Feb 2024 12:40:48 -0800 Subject: [PATCH] Fix legacy URI separator use in docstring --- hab/resolver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hab/resolver.py b/hab/resolver.py index cecb641..1efa948 100644 --- a/hab/resolver.py +++ b/hab/resolver.py @@ -85,8 +85,8 @@ def closest_config(self, path, default=False): default (bool, optional): If True, search the default tree instead of the tree specified by the first name in path. The leaf nodes do not need to match names exactly, it will pick a default leaf that starts with the - most common characters. Ie if path is `:project_a:Sc001` it would match - `:default:Sc0` not `:default:Sc01`. + most common characters. Ie if path is `project_a/Sc001` it would match + `default/Sc0` not `default/Sc01`. """ if not path.startswith(HabBase.separator): path = "".join((HabBase.separator, path))