Get the moid in a more failsafe manner

This commit is contained in:
James Tanner 2017-09-30 13:49:34 -04:00 committed by jctanner
parent 4c0889e8fc
commit 1c1c89927d

View file

@ -235,7 +235,11 @@ def compile_folder_path_for_object(vobj):
thisobj = vobj
while hasattr(thisobj, 'parent'):
thisobj = thisobj.parent
if thisobj._moId == 'group-d1':
try:
moid = thisobj._moId
except AttributeError:
moid = None
if moid == 'group-d1':
break
if isinstance(thisobj, vim.Folder):
paths.append(thisobj.name)