From: catchjosh Date: Tue, 15 Jun 2010 04:36:56 +0000 (+0000) Subject: Fixed issue #3 - fixed bad function call. X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-jsonrpclib.git/commitdiff_plain/391c49bab08fffeeb530ffc0cc5e627799139d42 Fixed issue #3 - fixed bad function call. git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@16 ae587032-bbab-11de-869a-473eb4776397 --- diff --git a/jsonrpclib/SimpleJSONRPCServer.py b/jsonrpclib/SimpleJSONRPCServer.py index bf903ea..f049f85 100644 --- a/jsonrpclib/SimpleJSONRPCServer.py +++ b/jsonrpclib/SimpleJSONRPCServer.py @@ -92,7 +92,7 @@ class SimpleJSONRPCDispatcher(SimpleXMLRPCServer.SimpleXMLRPCDispatcher): return self.instance._dispatch(method, params) else: try: - func = resolve_dotted_attribute( + func = SimpleXMLRPCServer.resolve_dotted_attribute( self.instance, method, True