summaryrefslogtreecommitdiff
path: root/zephyr/zmake/zmake/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/zmake/zmake/__main__.py')
-rw-r--r--zephyr/zmake/zmake/__main__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/zephyr/zmake/zmake/__main__.py b/zephyr/zmake/zmake/__main__.py
index 9ad509dfc5..fd1dfec13a 100644
--- a/zephyr/zmake/zmake/__main__.py
+++ b/zephyr/zmake/zmake/__main__.py
@@ -195,6 +195,7 @@ def get_argparser():
list_projects.add_argument(
"--format",
default="{config.project_name}\n",
+ dest="fmt",
help=(
"Output format to print projects (str.format(config=project.config) is "
"called on this for each project)."
@@ -351,7 +352,7 @@ def main(argv=None):
wait_rv = zmake.executor.wait()
return result or wait_rv
finally:
- multiproc.wait_for_log_end()
+ multiproc.LogWriter.wait_for_log_end()
if __name__ == "__main__":