Skip to content

Commit 8cfc5cc

Browse files
committed
Fixed Issue #30
1 parent f8c2fea commit 8cfc5cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)