diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-07-05 14:48:14 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-07-05 14:48:14 +0100 |
commit | 28eac91d62018ad275f86a38c44e5c8fcffeaec8 (patch) | |
tree | f1eff125d01f14da2db70b75af93dab7c2449ae7 | |
parent | 03fb974b8f5ca09159780e2daee755fbcf807837 (diff) | |
download | vyos-1x-28eac91d62018ad275f86a38c44e5c8fcffeaec8.tar.gz vyos-1x-28eac91d62018ad275f86a38c44e5c8fcffeaec8.zip |
xml: T2582: rename xml tags
The current use of () does not allow to use found()
Converting to [] like all other tags
-rw-r--r-- | python/vyos/xml/kw.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/vyos/xml/kw.py b/python/vyos/xml/kw.py index c85d9e0fd..64521c51a 100644 --- a/python/vyos/xml/kw.py +++ b/python/vyos/xml/kw.py @@ -27,12 +27,12 @@ def found(word): # root -version = '(version)' -tree = '(tree)' -priorities = '(priorities)' -owners = '(owners)' -tags = '(tags)' -default = '(default)' +version = '[version]' +tree = '[tree]' +priorities = '[priorities]' +owners = '[owners]' +tags = '[tags]' +default = '[default]' # nodes |