Commit 832f5c63 authored by Amos Latteier's avatar Amos Latteier

Fixed a bug in API cataloging. Thanks to Chris Petrilli.

parent 8a8e8e2b
......@@ -132,7 +132,7 @@ class APIHelpTopic(HelpTopic.HelpTopic):
"The full text of the Help Topic, for indexing purposes"
text="%s %s" % (self.title, self.doc)
for api in self.apis:
text="%s %s %s" % (text, api.SearchableText())
text="%s %s" % (text, api.SearchableText())
return text
......
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