Commit 44124d95 authored by lintangsutawika's avatar lintangsutawika
Browse files

add space after -

parent 491d4799
...@@ -578,7 +578,7 @@ def evaluate( ...@@ -578,7 +578,7 @@ def evaluate(
tab_string = "" tab_string = ""
if "tab" in task_results: if "tab" in task_results:
tab = task_results.pop("tab") tab = task_results.pop("tab")
tab_string = " " * tab + "-" if tab > 0 else "" tab_string = " " * tab + "- " if tab > 0 else ""
if task in task_group_alias: if task in task_group_alias:
task_alias = task_group_alias[task] task_alias = task_group_alias[task]
...@@ -600,7 +600,7 @@ def evaluate( ...@@ -600,7 +600,7 @@ def evaluate(
tab_string = "" tab_string = ""
if "tab" in group_results: if "tab" in group_results:
tab = group_results.pop("tab") tab = group_results.pop("tab")
tab_string = " " * tab + "-" if tab > 0 else "" tab_string = " " * tab + "- " if tab > 0 else ""
if group in task_group_alias: if group in task_group_alias:
group_alias = task_group_alias[group] group_alias = task_group_alias[group]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment