diff options
| author | hathach <[email protected]> | 2020-03-09 17:55:31 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-03-09 17:55:31 +0700 |
| commit | ec4323277d78c4a4fc4f1f2f58147eb108d5a0f1 (patch) | |
| tree | 00a7e9db759e50c0bdd0ea75a815eae55e19697c | |
| parent | 6f5466f017eb03aca64e397093af65b1bf80a8dd (diff) | |
fix ci
| -rw-r--r-- | tools/build_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index 039b77022..4f3e28747 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -77,7 +77,7 @@ for example in all_examples: if skip_example(example, board): success = "\033[33mskipped\033[0m " skip_count += 1 - print((build_format + '| {:.2f}s |').format(example, board, success, 0, flash_size, sram_size)) + print(build_format.format(example, board, success, '-', flash_size, sram_size)) else: build_result = build_example(example, board) |
