Merge pull request #3848 from minrk/empty-docstring

fix incorrect `empty-docstring`
Min RK 13 years ago
commit 40b113fc4e

@ -334,11 +334,14 @@ var IPython = (function (IPython) {
if (docstring == null) {
docstring = reply.docstring;
}
if (docstring == null && this._hide_if_no_docstring) {
return;
} else {
docstring = "<empty docstring>";
if (docstring == null) {
// For reals this time, no docstring
if (this._hide_if_no_docstring) {
return;
} else {
docstring = "<empty docstring>";
}
}
this.tooltip.fadeIn('fast');

Loading…
Cancel
Save