From 5a04cf9cb3ab7a46b4a22cd96781785029adc5ab Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Fri, 17 Jul 2020 12:20:59 +0500 Subject: [PATCH] fix spellings --- plogical/mysqlUtilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/mysqlUtilities.py b/plogical/mysqlUtilities.py index e264cf9c5..91c96ada8 100755 --- a/plogical/mysqlUtilities.py +++ b/plogical/mysqlUtilities.py @@ -848,7 +848,7 @@ password=%s cursor.execute("update db set Host='%s' where Db='%s'" % (remoteIP, dbName)) cursor.execute("update user set Host='%s' where user='%s'" % (remoteIP, userName)) - cursor.execute("FLUSH PRIVILIGES") + cursor.execute("FLUSH PRIVILEGES") connection.close()