From a370ef4f4eb64a70e3f5c5a91e371823be389306 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Fri, 20 Mar 2015 15:36:38 +0530 Subject: [PATCH] Fixed Invalid syntax --- ee/cli/plugins/stack.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ee/cli/plugins/stack.py b/ee/cli/plugins/stack.py index 67418bf8..c8e52695 100644 --- a/ee/cli/plugins/stack.py +++ b/ee/cli/plugins/stack.py @@ -567,7 +567,8 @@ class EEStackController(CementBaseController): if not EEFileUtils.grep(self, "/etc/nginx/conf.d/" "fastcgi.conf", "fastcgi_keep_conn"): - with open(, "a") as hhvm_file: + with open("/etc/nginx/conf.d/fastcgi.conf", + "a") as hhvm_file: hhvm_file.write("fastcgi_keep_conn on;\n") if os.path.isfile("/etc/nginx/conf.d/upstream.conf"):