Skip to content

Commit

Permalink
Add missing group params to wikidoc (#68)
Browse files Browse the repository at this point in the history
The catkin generated wikidoc files were missing parameters defined as groups.
Both the Dox and UsageDox file were generated correctly, but the wikidoc was
using the wrong method to traverse all groups.
  • Loading branch information
mdhorn authored and mikaelarguedas committed Nov 15, 2016
1 parent abba8d2 commit 15c4aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamic_reconfigure/parameter_generator_catkin.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def generatewikidoc(self):
name=Dynamically Reconfigurable Parameters
desc=See the [[dynamic_reconfigure]] package for details on dynamically reconfigurable parameters.""", file=f)
i=-1
for param in self.group.parameters:
for param in self.group.get_parameters():
i=i+1
range = ""
try:
Expand Down

0 comments on commit 15c4aed

Please sign in to comment.