forked from Archive/PX4-Autopilot
px_process_events: fix no base path being a list
This make `make extract_events` fail in CI that only runs on the main branch and hence I wasn't aware of.
This commit is contained in:
parent
613564fffa
commit
8da106df6a
|
@ -56,7 +56,7 @@ def main():
|
||||||
nargs='*',
|
nargs='*',
|
||||||
help="one or more paths/files to source files to scan for events")
|
help="one or more paths/files to source files to scan for events")
|
||||||
parser.add_argument("-b", "--base-path",
|
parser.add_argument("-b", "--base-path",
|
||||||
default=[""],
|
default="",
|
||||||
metavar="PATH",
|
metavar="PATH",
|
||||||
help="path prefix for everything passed with --src-path")
|
help="path prefix for everything passed with --src-path")
|
||||||
parser.add_argument("-j", "--json",
|
parser.add_argument("-j", "--json",
|
||||||
|
|
Loading…
Reference in New Issue