From 57e3aa38707a5b827d987b10dbf999e7081076cd Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sun, 19 May 2019 02:24:45 +0200 Subject: String repetition consistency nit --- examples/print_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/print_tree.py') diff --git a/examples/print_tree.py b/examples/print_tree.py index 66b3a81..49cb954 100644 --- a/examples/print_tree.py +++ b/examples/print_tree.py @@ -47,7 +47,7 @@ from kconfiglib import Kconfig, Symbol, Choice, MENU, COMMENT def indent_print(s, indent): - print(" "*indent + s) + print(indent*" " + s) def print_items(node, indent): -- cgit v1.2.3