Fixed issue #3 - fixed bad function call.

git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@16 ae587032-bbab-11de-869a-473eb4776397
This commit is contained in:
catchjosh 2010-06-15 04:36:56 +00:00
parent b5025aec62
commit 391c49bab0
1 changed files with 1 additions and 1 deletions

View 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