Complete statement

This commit is contained in:
Anthony Johnson 2016-03-04 10:49:01 -08:00
parent 49af2b252a
commit 4fef4ab2c1

View File

@ -466,7 +466,7 @@ class DotNetPythonMapper(PythonMapperBase):
parts.append('{fullName}<{uid}>'.format(**part))
elif 'uid' in part:
parts.append(part['uid'])
elif 'fullName':
elif 'fullName' in part:
parts.append(part['fullName'])
if parts:
resolved = ''.join(parts)