Merge pull request #14997 from rallytime/api_wheel_fix

Change self.wheelclient.w_funcs to self.wheelclient.functions
This commit is contained in:
Thomas S Hatch 2014-08-15 00:00:48 -06:00
commit ebfdb1ecb5

View File

@ -223,7 +223,7 @@ class APIClient(object):
client = parts[0] client = parts[0]
module = '.'.join(parts[1:]) # strip prefix module = '.'.join(parts[1:]) # strip prefix
if client == 'wheel': if client == 'wheel':
functions = self.wheelClient.w_funcs functions = self.wheelClient.functions
elif client == 'runner': elif client == 'runner':
functions = self.runnerClient.functions functions = self.runnerClient.functions
result = {'master': salt.utils.argspec_report(functions, module)} result = {'master': salt.utils.argspec_report(functions, module)}