diff --git a/grum/rpc/rpcclient.py b/grum/rpc/rpcclient.py index 0b4ca8e..e5f51d7 100644 --- a/grum/rpc/rpcclient.py +++ b/grum/rpc/rpcclient.py @@ -17,7 +17,10 @@ class RPCClient(xrc.ServerProxy): def __dir__(self): - return super().__dir__() + self.utils.info().keys() + d1 = super().__dir__() + d2 = self.utils.info().keys() + d2 = list(d2) + return d1 + d2