Skip to content

Commit c7ff117

Browse files
author
Sam Kleinman
committed
minor: bug fix and comment in domain.
1 parent c9f2ffe commit c7ff117

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/mongodb_domain.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,10 @@ def resolve_xref(self, env, fromdocname, builder, typ, target, node,
322322
name, obj = self.find_obj(env, objectname, target, typ, searchorder)
323323

324324
if obj is None:
325-
name, obj = self.find_obj(env, 'iddup' + name, target, typ, searchorder)
325+
name, obj = self.find_obj(env, 'iddup.' + name, target, typ, searchorder)
326326
if obj is None:
327+
# print names and info from the node object at this
328+
# point to report on links that fail to resolve
327329
return None
328330

329331
if name.startswith('bin.'):

0 commit comments

Comments
 (0)