Protect from unknown types---just mark as unknown

svn: r15161
This commit is contained in:
Doug Blank 2010-04-16 15:35:18 +00:00
parent 1b205c9d8d
commit 361a781b44

View File

@ -177,8 +177,10 @@ class GrampsType(object):
"""
if self.__value == self._CUSTOM:
return self.__string
else:
elif self.__value in self._I2EMAP:
return self._I2EMAP[self.__value]
else:
return _UNKNOWN
def serialize(self):
"""Convert the object to a serialized tuple of data. """