From 75b07c4b7c4bf90043e2960f02f4c003be34938c Mon Sep 17 00:00:00 2001 From: goodboy Date: Tue, 14 Apr 2026 14:25:39 -0400 Subject: [PATCH] Show trailing bindspace-path-div in `repr(UDSAddress)` --- tractor/ipc/_uds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/ipc/_uds.py b/tractor/ipc/_uds.py index 51f21353..45100f97 100644 --- a/tractor/ipc/_uds.py +++ b/tractor/ipc/_uds.py @@ -232,7 +232,7 @@ class UDSAddress( pid: str = '' body: str = ( - f'({self.filedir}, {self.filename}, {pid})' + f'({self.filedir}/, {self.filename}, {pid})' ) return ( f'{type(self).__name__}'