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:
Matthias Grob 2023-12-19 08:16:16 +01:00
parent 613564fffa
commit 8da106df6a
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ def main():
nargs='*',
help="one or more paths/files to source files to scan for events")
parser.add_argument("-b", "--base-path",
default=[""],
default="",
metavar="PATH",
help="path prefix for everything passed with --src-path")
parser.add_argument("-j", "--json",