summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2015-02-06 19:04:02 -0500
committerAmar Takhar <amar@rtems.org>2015-02-06 19:04:02 -0500
commitf9d242ac8b2e6cc2c823cf042843f68ea421920c (patch)
tree8536cc48c559b77690cbdef7757e65bc5e742d40
parentfc5e579ef5c9b18b5e39fd5d2eb6e977111d724e (diff)
Fix 2to3 bug in print.
-rw-r--r--rtems_waf/tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtems_waf/tools.py b/rtems_waf/tools.py
index 9484de3526..3fafd51691 100644
--- a/rtems_waf/tools.py
+++ b/rtems_waf/tools.py
@@ -157,7 +157,7 @@ def rtems_cmd_config(ctx):
for bsp in sorted(list_bsp[arch]):
descr = cfg.bsp_get_detail(arch, bsp)
print(" %-20s %s" % (bsp, descr))
- print()
+ print("")
return
if ctx.options.force is False and exists("config.cfg"):