summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2015-02-06 19:04:02 -0500
committerAmar Takhar <amar@rtems.org>2015-12-11 15:14:54 -0500
commite152d8d16b220198cfb7a6a2d41505ab73aeb71e (patch)
treebd76cb46dffb8416ba4ce7f9ed66f20c71ecd107
parent0429b114987d827ad4a74325a2cddad7002ed0eb (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"):