Fix stage key reference and update output print

This commit is contained in:
larper02
2026-08-14 10:33:16 -04:00
committed by Joseph Magly
parent bc891794db
commit 784b17a97d
+4 -4
View File
@@ -136,9 +136,9 @@
"def on_stage(stage):\n",
" icons = {\"summon\": \"\\u26a1\", \"probe\": \"\\u2692\", \"distill\": \"\\u269b\",\n",
" \"excise\": \"\\u2702\", \"verify\": \"\\u2713\", \"rebirth\": \"\\u2606\"}\n",
" icon = icons.get(stage.key, \"\")\n",
" icon = icons.get(stage.stage, \"\")\n",
" print(f\"\\n{'='*60}\")\n",
" print(f\"{icon} STAGE: {stage.key.upper()} — {stage.description}\")\n",
" print(f\"{icon} STAGE: {stage.stage.upper()} — {stage.message}\")\n",
" print(f\"{'='*60}\")\n",
"\n",
"def on_log(msg):\n",
@@ -152,7 +152,7 @@
"\n",
"print(f\"\\n{'='*60}\")\n",
"print(f\"ABLITERATION COMPLETE\")\n",
"print(f\"Output: {result.get('output_dir', OUTPUT_DIR)}\")\n",
"print(f\"Output: {result}\")\n",
"print(f\"{'='*60}\")"
]
},
@@ -295,4 +295,4 @@
]
}
]
}
}