fix(render): apply as_posix to fallback branch + hoist shutil import

This commit is contained in:
Trevin Chow
2026-05-17 00:19:49 -07:00
parent 5817ef8387
commit 0e353ae03f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -197,7 +197,7 @@ def compute_save_path_display(save_dir: str, topic: str, suffix: str, emit: str)
relative = raw.relative_to(home)
return f"~/{relative.as_posix()}"
except ValueError:
return str(raw)
return raw.as_posix()
def read_synthesis_file(path: str) -> str: