diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-05 15:59:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 15:59:14 +0200 |
commit | 380a0d23cee65b6b71560763a34748cba71523e6 (patch) | |
tree | f1eff125d01f14da2db70b75af93dab7c2449ae7 | |
parent | 03fb974b8f5ca09159780e2daee755fbcf807837 (diff) | |
parent | 28eac91d62018ad275f86a38c44e5c8fcffeaec8 (diff) | |
download | vyos-1x-380a0d23cee65b6b71560763a34748cba71523e6.tar.gz vyos-1x-380a0d23cee65b6b71560763a34748cba71523e6.zip |
Merge pull request #490 from thomas-mangin/T2582-definition
xml: T2582: rename xml 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 |