clean get_parents_name

This commit is contained in:
Victor Bombi
2020-09-04 09:12:31 +02:00
parent 46f51395eb
commit ea1e5a3ab8

View File

@@ -1052,7 +1052,6 @@ function M.Parser()
local function get_parents_name(it)
local parnam = ""
while it.parent do
print("get_parents_name", it.parent.name)
parnam = it.parent.name.."::"..parnam
it = it.parent
end