Skip to content

Commit

Permalink
Fixup to LocalRepoRegistry
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Aug 8, 2024
1 parent 319eed7 commit 81229db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/activator/repo_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def pop(self, pid: int) -> str:
repo = registry.pop(pid)
self._write_registry(f, registry)
except KeyError:
raise ValueError(f"No known repository for {pid}.")
raise ValueError(f"No known repository for process {pid}.")
_log.info("Unregistered %s from process %d.", repo, pid)
return repo

Expand Down

0 comments on commit 81229db

Please sign in to comment.