summaryrefslogtreecommitdiffstats
path: root/func/overlord
diff options
context:
space:
mode:
Diffstat (limited to 'func/overlord')
-rwxr-xr-xfunc/overlord/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/overlord/client.py b/func/overlord/client.py
index 54777e3..9e4b0dc 100755
--- a/func/overlord/client.py
+++ b/func/overlord/client.py
@@ -294,7 +294,7 @@ class Overlord(object):
if method in self.methods.keys():
return self.methods[method](*args)
else:
- raise AttributeError("no such method")
+ raise AttributeError("No such local method: %s" % method)
if not self.delegate: #delegation is turned off, so run normally
return self.run_direct(module, method, args, nforks)