Skip to content

Commit 053f24f

Browse files
authored
Merge pull request #31 from PTCInc/30-tag-get_full_tag_structure-fixe
30 tag get full tag structure fix
2 parents f8c2fea + 9e23dd5 commit 053f24f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

kepconfig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
.. include:: ../README.md
1919
2020
"""
21-
__version__ = "1.2.1"
21+
__version__ = "1.2.2"
2222
from . import connection, error
2323

kepconfig/connectivity/tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,6 @@ def get_full_tag_structure(server: server, path: str, *, recursive: bool = False
480480
r['tag_groups'] = get_all_tag_groups(server, path, options= options)
481481
if recursive:
482482
for group in r['tag_groups']:
483-
res = get_full_tag_structure(server, path + '.' + group['common.ALLTYPES_NAME'], options= options)
483+
res = get_full_tag_structure(server, path + '.' + group['common.ALLTYPES_NAME'], recursive= recursive, options= options)
484484
group.update(res)
485485
return r

0 commit comments

Comments
 (0)