diff options
author | Chris Packham | 2019-01-18 20:40:29 +1300 |
---|---|---|
committer | Simon Glass | 2019-02-09 12:50:22 -0700 |
commit | 58804b8cf291c56eee9fbfbfdb7c10e8a238444b (patch) | |
tree | 03a393d07f37ff04dee8b94066f0c5725236fc75 /tools/buildman | |
parent | 3600b46117700af68f506546107762a5c9e5d23c (diff) |
buildman: fix typo
Fix a typo in the error message from CheckOutputDir().
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 27916d3c355..fcf531c5f14 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -99,7 +99,7 @@ def CheckOutputDir(output_dir): cwd_path = os.path.realpath('.') while True: if os.path.realpath(path) == cwd_path: - Print("Cannot use output directory '%s' since it is within the current directtory '%s'" % + Print("Cannot use output directory '%s' since it is within the current directory '%s'" % (path, cwd_path)) sys.exit(1) parent = os.path.dirname(path) |