|
|
403b09 |
From 4132b63a5e02b019826053a07b2be79c879c1f6e Mon Sep 17 00:00:00 2001
|
|
|
403b09 |
From: Stanislav Laznicka <slaznick@redhat.com>
|
|
|
403b09 |
Date: Mon, 11 Jul 2016 12:31:39 +0200
|
|
|
403b09 |
Subject: [PATCH] Removed unused method parameter from migrate-ds
|
|
|
403b09 |
|
|
|
403b09 |
An extra parameter on client side command override of migrate-ds output
|
|
|
403b09 |
was causing errors.
|
|
|
403b09 |
|
|
|
403b09 |
https://fedorahosted.org/freeipa/ticket/6034
|
|
|
403b09 |
|
|
|
403b09 |
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
|
|
|
403b09 |
---
|
|
|
403b09 |
ipaclient/plugins/migration.py | 2 +-
|
|
|
403b09 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
403b09 |
|
|
|
403b09 |
diff --git a/ipaclient/plugins/migration.py b/ipaclient/plugins/migration.py
|
|
|
403b09 |
index 8ac5f66bf1440b245c1268cd97d5a3e0dc2e6226..cf8d461bfa144f1287ef36a231f553fd9cd102b3 100644
|
|
|
403b09 |
--- a/ipaclient/plugins/migration.py
|
|
|
403b09 |
+++ b/ipaclient/plugins/migration.py
|
|
|
403b09 |
@@ -50,7 +50,7 @@ can use their Kerberos accounts.''')
|
|
|
403b09 |
option = option.clone_retype(option.name, File)
|
|
|
403b09 |
yield option
|
|
|
403b09 |
|
|
|
403b09 |
- def output_for_cli(self, textui, result, ldapuri, bindpw, **options):
|
|
|
403b09 |
+ def output_for_cli(self, textui, result, ldapuri, **options):
|
|
|
403b09 |
textui.print_name(self.name)
|
|
|
403b09 |
if not result['enabled']:
|
|
|
403b09 |
textui.print_plain(self.migration_disabled_msg)
|
|
|
403b09 |
--
|
|
|
403b09 |
2.4.3
|
|
|
403b09 |
|