summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Crittenden <rcrit@ipa.greyoak.com>2008-08-06 11:27:04 -0400
committerRob Crittenden <rcrit@ipa.greyoak.com>2008-08-06 11:27:30 -0400
commitdf2b40303f86054fe792306fd48430db23dccd83 (patch)
treefd120d463eabe19518ecafd2f699979148422d26
parent4deb919ce452f6da1ea71aff77379ba275444eeb (diff)
downloadfreeipa.git-df2b40303f86054fe792306fd48430db23dccd83.tar.gz
freeipa.git-df2b40303f86054fe792306fd48430db23dccd83.tar.xz
freeipa.git-df2b40303f86054fe792306fd48430db23dccd83.zip
Fix python syntax error: missing colon.
-rw-r--r--ipa-server/ipa-install/ipa-server-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-server/ipa-install/ipa-server-install b/ipa-server/ipa-install/ipa-server-install
index ce300cc7..d168570a 100644
--- a/ipa-server/ipa-install/ipa-server-install
+++ b/ipa-server/ipa-install/ipa-server-install
@@ -337,7 +337,7 @@ def main():
if options.uninstall:
if not options.unattended:
print "\nThis is a NON REVERSIBLE operation and will delete all data and configuration!\n"
- if not user_input("Are you sure you want to continue with the uninstall procedure?", False)
+ if not user_input("Are you sure you want to continue with the uninstall procedure?", False):
print ""
print "Aborting uninstall operation."
sys.exit(1)