diff options
author | Simon Glass <sjg@chromium.org> | 2019-10-31 07:43:05 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-11-04 18:15:32 -0700 |
commit | 388560134b99dc4cc752627d3a7e9f8c8c2a89a7 (patch) | |
tree | 8164b210b7788aae0e86ce143e35240013b9d0c6 | |
parent | a90df2b17282c43600284a92bf034d81d0c49444 (diff) | |
download | u-boot-388560134b99dc4cc752627d3a7e9f8c8c2a89a7.zip u-boot-388560134b99dc4cc752627d3a7e9f8c8c2a89a7.tar.gz u-boot-388560134b99dc4cc752627d3a7e9f8c8c2a89a7.tar.bz2 |
binman: Move to use Python 3
Update this tool to use Python 3 to meet the 2020 deadline.
Unfortunately this introduces a test failure due to a problem in pylibfdt
on Python 3. I will investigate.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-x | tools/binman/binman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/binman.py b/tools/binman/binman.py index 8bd5868..9e6fd72 100755 --- a/tools/binman/binman.py +++ b/tools/binman/binman.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0+ # Copyright (c) 2016 Google, Inc |