]> git.sur5r.net Git - u-boot/blobdiff - test/py/u_boot_console_sandbox.py
test/py: Make print statements python 3.x safe
[u-boot] / test / py / u_boot_console_sandbox.py
index a616cfb49fc7a06a97af6e6b19fd93b804f3cf0e..c901397e1c1fedc8e555a58a1d47d7046a092f31 100644 (file)
@@ -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]