diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-05-19 02:24:45 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-05-19 02:26:13 +0200 |
| commit | 57e3aa38707a5b827d987b10dbf999e7081076cd (patch) | |
| tree | 98936acc6aaff69d3a69e755e008494df0e20c4f /examples/print_tree.py | |
| parent | a75e073072399aa59fa52a0a0e02cbc1e9722dca (diff) | |
String repetition consistency nit
Diffstat (limited to 'examples/print_tree.py')
| -rw-r--r-- | examples/print_tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
