summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
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: