Fixed issue #3 - fixed bad function call.
authorcatchjosh <catchjosh@ae587032-bbab-11de-869a-473eb4776397>
Tue, 15 Jun 2010 04:36:56 +0000 (04:36 +0000)
committercatchjosh <catchjosh@ae587032-bbab-11de-869a-473eb4776397>
Tue, 15 Jun 2010 04:36:56 +0000 (04:36 +0000)
git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@16 ae587032-bbab-11de-869a-473eb4776397

jsonrpclib/SimpleJSONRPCServer.py

index bf903ea..f049f85 100644 (file)
@@ -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