ros / dynamic_reconfigure

BSD 3-Clause "New" or "Revised" License
48 stars 111 forks source link

fix issue #51 reloading parameters from dumped file #61

Closed vagvaz closed 8 years ago

vagvaz commented 8 years ago

In python client when loading the variables the code was checking for object level equality instead of just the string value using the is operator. So replacing the is operator with != fixes the problem.

To test that this is the problem just print the ids of the name variable and 'groups' string

mikaelarguedas commented 8 years ago

lgtm thanks!