diff options
| author | Simon Glass <[email protected]> | 2023-07-19 17:49:10 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2023-07-24 09:34:11 -0600 |
| commit | 4a7419bfbbeae2838422b13fce06d83f30491d70 (patch) | |
| tree | 83bb29428c61eeaee6ac9de16e5dcc412392c940 /tools/buildman/builderthread.py | |
| parent | 606e54357ff2fd590a55a916093bb6d1b8ed67e1 (diff) | |
buildman: Export _get_output_dir() to avoid warnings
Make this a public memory since it is used outside the class.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/buildman/builderthread.py')
| -rw-r--r-- | tools/buildman/builderthread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index 179fc477c00..45ae6edf9f4 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -351,7 +351,7 @@ class BuilderThread(threading.Thread): return # Write the output and stderr - output_dir = self.builder._get_output_dir(result.commit_upto) + output_dir = self.builder.get_output_dir(result.commit_upto) mkdir(output_dir) build_dir = self.builder.get_build_dir(result.commit_upto, result.brd.target) |
