Skip to content

Commit b2e440e

Browse files
committed
fix(core): normalize rename conflict paths
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent 7984ba4 commit b2e440e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basic_memory/services/entity_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ async def update_entity_with_content(
732732
and not self._paths_share_storage_target(previous_file_path, prepared.file_path)
733733
):
734734
raise EntityAlreadyExistsError(
735-
f"file already exists at destination path: {prepared.file_path}"
735+
f"file already exists at destination path: {prepared.file_path.as_posix()}"
736736
)
737737
# --- Persist Prepared State ---
738738
checksum = await self.file_service.write_file(

0 commit comments

Comments
 (0)