Commit 9e595533 authored by 's avatar

Bug # 1240: two-argument append call fixed.

parent d8acfd93
......@@ -153,7 +153,7 @@ class APIDoc(Persistent):
for base in klass.__extends__:
names=string.split(base, '.')
url="%s/Help/%s.py#%s" % (names[0], names[1], names[2])
self.extends.append(names[2], url)
self.extends.append((names[2], url))
# Get info on methods and attributes, ignore special items
self.attributes=[]
......
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