summaryrefslogtreecommitdiffstats
path: root/func/overlord
diff options
context:
space:
mode:
authorKrzysztof A. Adamski <krzysztofa@gmail.com>2008-08-16 17:00:53 +0200
committerKrzysztof A. Adamski <krzysztofa@gmail.com>2008-08-16 17:00:53 +0200
commit4005973a517189036a98175f61ae1006914ef323 (patch)
tree5432dc7e330953db379f7afb77fe7bfeab9a0613 /func/overlord
parent32689058c602362dcab1b1ae564d86ecc04c4b79 (diff)
downloadfunc-4005973a517189036a98175f61ae1006914ef323.tar.gz
func-4005973a517189036a98175f61ae1006914ef323.tar.xz
func-4005973a517189036a98175f61ae1006914ef323.zip
Make exception more verbose.
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)