From 78bdb752917f43bc73cc55ebdda987237d0c1d0c Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 15 Apr 2008 21:26:37 -0400 Subject: [PATCH] Move print statement to the correct scope so it displays both lock and unlock. 442625 --- ipa-admintools/ipa-lockuser | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-admintools/ipa-lockuser b/ipa-admintools/ipa-lockuser index 65342e0b9..6e0361fe4 100644 --- a/ipa-admintools/ipa-lockuser +++ b/ipa-admintools/ipa-lockuser @@ -59,7 +59,7 @@ def main(): return 0 except: raise - print args[1] + " successfully %s" % msg + print args[1] + " successfully %s" % msg return 0