show Invalid Method error in same format as other API errors

This commit is contained in:
Jonathan Warren 2013-07-31 15:38:01 -04:00
parent f8f940cf30
commit 46c900f027
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
elif method == 'clientStatus':
return '{ "networkConnections" : "%s" }' % str(len(shared.connectedHostsList))
else:
return 'Invalid Method: %s' % method
return 'API Error 0020: Invalid method: %s' % method
# This thread, of which there is only one, runs the API.