From 2f98a143015793d8a9b95558240563c40dd649e3 Mon Sep 17 00:00:00 2001 From: Shawn Kwang Date: Fri, 20 May 2016 11:13:16 -0500 Subject: [PATCH] fixed bug in indentation --- tools/check_project | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/check_project b/tools/check_project index afaf26d495..2c3c28b935 100755 --- a/tools/check_project +++ b/tools/check_project @@ -63,11 +63,11 @@ def determineapacheuser(user): if len(out1)==1: return out1.pop() - print "WARNING: Script could not determine which user runs apache Web server. Aborting" - print " You should specify the apache user with the -a/--apache_user flag" - print " Try running the following command with apache Web server running:" - print " ps -ef | egrep '(httpd|apache2|apache)' | grep -v `whoami` | grep -v root" - sys.exit(1) + print "WARNING: Script could not determine which user runs apache Web server. Aborting" + print " You should specify the apache user with the -a/--apache_user flag" + print " Try running the following command with apache Web server running:" + print " ps -ef | egrep '(httpd|apache2|apache)' | grep -v `whoami` | grep -v root" + sys.exit(1) else: check_user(user) return user