diff options
author | Paul Burton <paul.burton@imgtec.com> | 2017-09-14 14:34:43 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-07-10 14:50:50 -0600 |
commit | dffd56d1d270e4797e43272a6c9000b8b8aeaf29 (patch) | |
tree | bef4fb8c44874d9b2a8d5214a675f80fb8d63633 /test/py/u_boot_console_sandbox.py | |
parent | e3396ffd720877976141fa0b76a0b8ee9643d7d1 (diff) | |
download | u-boot-dffd56d1d270e4797e43272a6c9000b8b8aeaf29.tar.gz |
test/py: Make print statements python 3.x safe
In python 3.x print must be called as a function rather than used as a
statement. Update uses of print to the function call syntax in order to
be python 3.x safe.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'test/py/u_boot_console_sandbox.py')
-rw-r--r-- | test/py/u_boot_console_sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/u_boot_console_sandbox.py b/test/py/u_boot_console_sandbox.py index a616cfb49f..c901397e1c 100644 --- a/test/py/u_boot_console_sandbox.py +++ b/test/py/u_boot_console_sandbox.py @@ -41,7 +41,7 @@ class ConsoleSandbox(ConsoleBase): bcfg = self.config.buildconfig config_spl = bcfg.get('config_spl', 'n') == 'y' fname = '/spl/u-boot-spl' if config_spl else '/u-boot' - print fname + print(fname) cmd = [] if self.config.gdbserver: cmd += ['gdbserver', self.config.gdbserver] |