summaryrefslogtreecommitdiffstats
path: root/ipaplatform/base
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2014-06-16 18:49:47 +0200
committerPetr Viktorin <pviktori@redhat.com>2014-06-16 19:48:21 +0200
commitd868fc5566da547d2060ef4a42eb5a0d0e0a72d6 (patch)
treefba353f083d54f126ea970c650b0d3abcf55f99e /ipaplatform/base
parent3b4ab8b4f224db67613544923a608c51ad476748 (diff)
downloadfreeipa-d868fc5566da547d2060ef4a42eb5a0d0e0a72d6.tar.gz
freeipa-d868fc5566da547d2060ef4a42eb5a0d0e0a72d6.tar.xz
freeipa-d868fc5566da547d2060ef4a42eb5a0d0e0a72d6.zip
Fix self argument in tasks
Reviewed-By: Tomáš Babej <tbabej@redhat.com>
Diffstat (limited to 'ipaplatform/base')
-rw-r--r--ipaplatform/base/tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaplatform/base/tasks.py b/ipaplatform/base/tasks.py
index f4bfbb6db..b8ebbdfac 100644
--- a/ipaplatform/base/tasks.py
+++ b/ipaplatform/base/tasks.py
@@ -60,10 +60,10 @@ class BaseTaskNamespace(object):
def set_nisdomain(self, nisdomain):
return
- def modify_nsswitch_pam_stack(sssd, mkhomedir, statestore):
+ def modify_nsswitch_pam_stack(self, sssd, mkhomedir, statestore):
return
- def modify_pam_to_use_krb5(statestore):
+ def modify_pam_to_use_krb5(self, statestore):
return
task_namespace = BaseTaskNamespace()