From d091116403a50f847049b314d16f208ff785ae3c Mon Sep 17 00:00:00 2001 From: gau1991 Date: Thu, 8 Jan 2015 17:54:27 +0530 Subject: [PATCH] Fixed typos --- ee/cli/plugins/stack.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/cli/plugins/stack.py b/ee/cli/plugins/stack.py index d42078a7..417d2bb3 100644 --- a/ee/cli/plugins/stack.py +++ b/ee/cli/plugins/stack.py @@ -969,9 +969,9 @@ class EEStackController(CementBaseController): apt_packages = apt_packages + EEVariables.ee_mailscanner packages = packages + ["/var/www/22222/htdocs/vimbadmin", "/var/www/roundcubemail"] - if EEShellExec.cmd_exec("mysqladmin ping"): - EEMysql.execute("drop database vimbadmin") - EEMysql.execute("drop database roundcubemail") + if EEShellExec.cmd_exec(self, "mysqladmin ping"): + EEMysql.execute(self, "drop database vimbadmin") + EEMysql.execute(self, "drop database roundcubemail") if self.app.pargs.nginx: self.app.log.debug("Purge apt_packages variable of Nginx")