##// END OF EJS Templates
Reword deprecation warning.
Matthias Bussonnier -
Show More
@@ -695,7 +695,8 b' class Inspector(Colorable):'
695 """DEPRECATED. Compute a dict with detailed information about an object.
695 """DEPRECATED. Compute a dict with detailed information about an object.
696 """
696 """
697 if formatter is not None:
697 if formatter is not None:
698 warnings.warn('Inspector.info(formatter) keyword is deprecated as of IPython 5.0 and will have no effects.',
698 warnings.warn('The `formatter` keyword argument to `Inspector.info`'
699 'is deprecated as of IPython 5.0 and will have no effects.',
699 DeprecationWarning, stacklevel=2)
700 DeprecationWarning, stacklevel=2)
700 return self._info(obj, oname=oname, info=info, detail_level=detail_level)
701 return self._info(obj, oname=oname, info=info, detail_level=detail_level)
701
702
General Comments 0
You need to be logged in to leave comments. Login now