Skip to content

Commit df609a5

Browse files
committed
Fixed bad arg parser name for gnss_aux lever arm config.
1 parent caaf271 commit df609a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/config_tool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ def main():
12491249

12501250
help = 'The secondary (auxiliary) GNSS antenna lever arm (in meters).'
12511251
param_parser.add_parser('gnss_aux', help=help, description=help)
1252-
gnss_parser = apply_param_parser.add_parser('gnss', help=help, description=help)
1252+
gnss_parser = apply_param_parser.add_parser('gnss_aux', help=help, description=help)
12531253
gnss_parser.add_argument('x', type=float, help='The X offset with respect to the vehicle body (in meters).')
12541254
gnss_parser.add_argument('y', type=float, help='The Y offset with respect to the vehicle body (in meters).')
12551255
gnss_parser.add_argument('z', type=float, help='The Z offset with respect to the vehicle body (in meters).')

0 commit comments

Comments
 (0)