diff options
| author | Daniil Baturin <daniil@vyos.io> | 2024-08-26 09:57:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-26 09:57:06 +0100 |
| commit | 99556ee5e61f2335bffc827ba91a5aad6f4e7f99 (patch) | |
| tree | 26012cdf6c0802e54b8e2acb9493507deecb732a /python/vyos/xml_ref/__init__.py | |
| parent | 190ae20824784271376c74eb9d6685155bc29cd8 (diff) | |
| parent | eafe92390982b47195013c7952137192bc21a1d0 (diff) | |
| download | vyos-1x-99556ee5e61f2335bffc827ba91a5aad6f4e7f99.tar.gz vyos-1x-99556ee5e61f2335bffc827ba91a5aad6f4e7f99.zip | |
Merge pull request #4016 from vyos/mergify/bp/circinus/pr-4015
T6671: defer config dependency if scheduled in priority queue (backport #4015)
Diffstat (limited to 'python/vyos/xml_ref/__init__.py')
| -rw-r--r-- | python/vyos/xml_ref/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/xml_ref/__init__.py b/python/vyos/xml_ref/__init__.py index 2ba3da4e8..7e9bf2b43 100644 --- a/python/vyos/xml_ref/__init__.py +++ b/python/vyos/xml_ref/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2024 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -53,8 +53,8 @@ def is_valueless(path: list) -> bool: def is_leaf(path: list) -> bool: return load_reference().is_leaf(path) -def owner(path: list) -> str: - return load_reference().owner(path) +def owner(path: list, with_tag=False) -> str: + return load_reference().owner(path, with_tag=with_tag) def priority(path: list) -> str: return load_reference().priority(path) |
