Catch TypeError in JS mapper.

pull/14/head
Eric Holscher 9 years ago
parent 627e6d49b4
commit 9163a0088a

@ -60,7 +60,7 @@ class JavaScriptSphinxMapper(SphinxMapperBase):
)
try:
cls = obj_map[data['kind']]
except KeyError:
except (KeyError, TypeError):
self.app.warn('Unknown Type: %s' % data)
else:
# Recurse for children

Loading…
Cancel
Save