"magic_pdf/para/title_processor.py.bak" did not exist on "c2e5c36f796ab8a4418f2676264cbb995713f451"
Commit 44124d95 authored by lintangsutawika's avatar lintangsutawika
Browse files

add space after -

parent 491d4799
......@@ -578,7 +578,7 @@ def evaluate(
tab_string = ""
if "tab" in task_results:
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:
task_alias = task_group_alias[task]
......@@ -600,7 +600,7 @@ def evaluate(
tab_string = ""
if "tab" in group_results:
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:
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