##// END OF EJS Templates
Unindent custom docstrings of objects.
Thomas Kluyver -
Show More
@@ -105,7 +105,7 b' def getdoc(obj):'
105 105 else:
106 106 # if we get extra info, we add it to the normal docstring.
107 107 if isinstance(ds, basestring):
108 return ds
108 return inspect.cleandoc(ds)
109 109
110 110 try:
111 111 return inspect.getdoc(obj)
General Comments 0
You need to be logged in to leave comments. Login now