diff options
author | Tom Rini <trini@konsulko.com> | 2018-07-11 09:40:38 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-11 09:40:38 -0400 |
commit | 1703fbefd9183fffd76f4744a73f5ca9daef6313 (patch) | |
tree | d1155db77dc38ebb02aa0ee66f4559032c092d74 /test/py/u_boot_console_sandbox.py | |
parent | 421be6fca5cbe0d9dd3a10467529eed53528c258 (diff) | |
parent | 8793631ec13ee9e6c7189a7bdca38dde7b4390a8 (diff) |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'test/py/u_boot_console_sandbox.py')
-rw-r--r-- | test/py/u_boot_console_sandbox.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/u_boot_console_sandbox.py b/test/py/u_boot_console_sandbox.py index a616cfb49fc..778f6d0983d 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] @@ -81,7 +81,7 @@ class ConsoleSandbox(ConsoleBase): p = self.p self.p = None - for i in xrange(100): + for i in range(100): ret = not p.isalive() if ret: break |