fixed bug in autosummary.

This commit is contained in:
Chris
2008-11-04 15:01:46 -07:00
parent 3a60da1b0d
commit 034aae40bf
+1 -3
View File
@@ -214,11 +214,9 @@ def get_autosummary(names, state, no_signatures=False):
real_names[name] = real_name
title = ""
qualifier = 'obj'
if inspect.ismodule(obj):
qualifier = 'mod'
col1 = ":"+qualifier+":`%s <%s>`" % (name, real_name)
col2 = title
append_row(col1, col2)