Skip to content

Commit

Permalink
BUG: mk_object_info -> object_info
Browse files Browse the repository at this point in the history
  • Loading branch information
rkern committed Sep 20, 2010
1 parent 742d5ef commit 676c65d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions IPython/core/interactiveshell.py
Expand Up @@ -1198,9 +1198,8 @@ def object_inspect(self, oname):
if info.found:
return self.inspector.info(info.obj, oname, info=info)
else:
return oinspect.mk_object_info({'name' : oname,
'found' : False})

return oinspect.object_info(name=oname, found=False)

#-------------------------------------------------------------------------
# Things related to history management
#-------------------------------------------------------------------------
Expand Down

0 comments on commit 676c65d

Please sign in to comment.