summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-03-13 00:53:05 -0600
committerRob Crittenden <rcritten@redhat.com>2009-03-13 10:31:00 -0400
commit13ff27e9ecd06cf893abf12f40051e54639be47d (patch)
tree7bb11a04aafb41362f14869882c7b4af7d77b103 /ipalib/backend.py
parent588c90d8e604c08604840bd3f41d2a5226154fbe (diff)
downloadfreeipa-13ff27e9ecd06cf893abf12f40051e54639be47d.tar.gz
freeipa-13ff27e9ecd06cf893abf12f40051e54639be47d.tar.xz
freeipa-13ff27e9ecd06cf893abf12f40051e54639be47d.zip
Fixed Executioner.execute() so that its 'name' argument doesn't conflict with a param called 'name' (which is a valid param name)
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 22aa128b3..1902929aa 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -102,12 +102,12 @@ class Executioner(Backend):
else:
self.Backend.xmlclient.connect()
- def execute(self, name, *args, **options):
+ def execute(self, _name, *args, **options):
error = None
try:
- if name not in self.Command:
- raise CommandError(name=name)
- result = self.Command[name](*args, **options)
+ if _name not in self.Command:
+ raise CommandError(name=_name)
+ result = self.Command[_name](*args, **options)
except PublicError, e:
error = e
except StandardError, e: