Fix missing entries in Python doc

Fixes #463.
pull/469/head
Thibaut Courouble 9 years ago
parent 4ca8c6ee23
commit a4b145609d

@ -67,7 +67,7 @@ module Docs
end end
end end
css('.function > dt[id]', '.method > dt[id]', '.classmethod > dt[id]').each do |node| css('.function > dt[id]', '.method > dt[id]', '.staticmethod > dt[id]', '.classmethod > dt[id]').each do |node|
entries << [node['id'] + '()', node['id']] entries << [node['id'] + '()', node['id']]
end end

@ -63,7 +63,7 @@ module Docs
end end
end end
css('.function > dt[id]', '.method > dt[id]', '.classmethod > dt[id]').each do |node| css('.function > dt[id]', '.method > dt[id]', '.staticmethod > dt[id]', '.classmethod > dt[id]').each do |node|
entries << [node['id'] + '()', node['id']] entries << [node['id'] + '()', node['id']]
end end

Loading…
Cancel
Save