Skip to content

Commit

Permalink
mavproxy_param: fixes broken parameter setting
Browse files Browse the repository at this point in the history
Fixes a change made in #1408 that passes in an incorrect keyword argument into set_parameter
  • Loading branch information
joshanne authored and peterbarker committed Jan 22, 2025
1 parent eacf029 commit 9b3bc56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/modules/mavproxy_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def param_bitmask_modify(self, master, args):
return

# Update the parameter
self.set_parameter(master, uname, value, attempts=3, parm_type=ptype)
self.set_parameter(master, uname, value, attempts=3, param_type=ptype)

def set_parameter(self, master, name, value, attempts=None, param_type=None):
'''convenient intermediate method which determines parameter type for
Expand Down

0 comments on commit 9b3bc56

Please sign in to comment.