From b15cd8fa967799fcaeaf2433516658ab24f68511 Mon Sep 17 00:00:00 2001 From: rperper Date: Wed, 31 Oct 2018 11:42:51 -0400 Subject: [PATCH] Spelling counts --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index a81e4ff08..e92e0197c 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -624,7 +624,7 @@ class InstallCyberPanel: conn = mariadb.connect(user='root', passwd=self.mysql_Root_password) cursor = conn.cursor() cursor.execute('set global innodb_file_per_table = on;') - cursor.exeucte('set global innodb_file_format = Barracuda;') + cursor.execute('set global innodb_file_format = Barracuda;') cursor.execute('set global innodb_large_prefix = on;') cursor.close() conn.close()