mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 18:08:30 -04:00
Tools: Fix broken duplicate check for adding new libraries to the data structure
This commit is contained in:
parent
2f4af05f33
commit
068febda1f
@ -69,7 +69,7 @@ for vehicle in vehicles:
|
||||
setattr(l, field[0], field[1])
|
||||
else:
|
||||
error("unknown parameter metadata field '%s'" % field[0])
|
||||
if l not in libraries:
|
||||
if not any(l.name == parsed_l.name for parsed_l in libraries):
|
||||
libraries.append(l)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user