From a9dfee9545fa3ec12e3b49e33c69c66b976d5dc6 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Thu, 12 Jun 2014 16:44:41 -0700 Subject: [PATCH] Fix bug in DynamicCapability's dir method --- capnp/lib/capnp.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capnp/lib/capnp.pyx b/capnp/lib/capnp.pyx index f0de1b1..6ec166d 100644 --- a/capnp/lib/capnp.pyx +++ b/capnp/lib/capnp.pyx @@ -1837,7 +1837,7 @@ cdef class _DynamicCapabilityClient: return self._cached_schema def __dir__(self): - return list(self.schema._method_names) + return list(self.schema.method_names_inherited) cdef class _CapabilityClient: cdef C_Capability.Client * thisptr