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_config_tree.py | |
| parent | a75e073072399aa59fa52a0a0e02cbc1e9722dca (diff) | |
String repetition consistency nit
Diffstat (limited to 'examples/print_config_tree.py')
| -rw-r--r-- | examples/print_config_tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/print_config_tree.py b/examples/print_config_tree.py index 90e529f..dc81d9d 100644 --- a/examples/print_config_tree.py +++ b/examples/print_config_tree.py @@ -64,7 +64,7 @@ WITH_HELP_DESC = False def indent_print(s, indent): - print(" "*indent + s) + print(indent*" " + s) def value_str(sc): |
