From bf743087d25e170091dc507fa087d012b64b1468 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 21 Nov 2007 00:29:03 -0500 Subject: [PATCH] Fix indentation error that occured in merge --- ipa-python/ipaclient.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ipa-python/ipaclient.py b/ipa-python/ipaclient.py index 0eeb2f36f..cda8ceb93 100644 --- a/ipa-python/ipaclient.py +++ b/ipa-python/ipaclient.py @@ -342,17 +342,17 @@ class IPAClient: return entries - def mark_group_active(self,cn): - """Set a group as active by cn.""" - - result = self.transport.mark_group_active(cn) - return result - - def mark_group_inactive(self,cn): - """Set a group as inactive by cn.""" - - result = self.transport.mark_group_inactive(cn) - return result + def mark_group_active(self,cn): + """Set a group as active by cn.""" + + result = self.transport.mark_group_active(cn) + return result + + def mark_group_inactive(self,cn): + """Set a group as inactive by cn.""" + + result = self.transport.mark_group_inactive(cn) + return result # Configuration