diff options
author | Simon Glass <sjg@chromium.org> | 2020-08-05 13:27:47 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-08-22 08:53:38 -0600 |
commit | 07237988dcf88366ce4182eceac698cf1e97afc5 (patch) | |
tree | 1f45ccc449a1da4e63b55142e5b162e1eac20300 /tools/binman/ftest.py | |
parent | 87d43329ef7698eab5b090a91228269c39643122 (diff) |
binman: Correct some import statements
Some of these were not converted when binman moved to use absolute paths.
Fix them.
Also drop the import of 'test' which is a directory, not a module.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/ftest.py')
-rw-r--r-- | tools/binman/ftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index fedcc1ada1..5f650b5f94 100644 --- a/tools/binman/ftest.py +++ b/tools/binman/ftest.py @@ -29,7 +29,7 @@ from dtoc import fdt from dtoc import fdt_util from binman.etype import fdtmap from binman.etype import image_header -from image import Image +from binman.image import Image from patman import command from patman import test_util from patman import tools |