Commit 4f959d2c authored by Neal Norwitz's avatar Neal Norwitz

Fix SF patch #695581, "returnself" -> "return self"

parent d9efdc5b
......@@ -268,7 +268,7 @@ class Doc:
args = (object, name) + args
if inspect.ismodule(object): return self.docmodule(*args)
if inspect.isclass(object): return self.docclass(*args)
if inspect.isroutine(object): returnself.docroutine(*args)
if inspect.isroutine(object): return self.docroutine(*args)
return self.docother(*args)
def fail(self, object, name=None, *args):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment