From f922152bfc357c34816ef026f6c4477039bf8a35 Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Thu, 28 Jun 2012 22:10:53 -0600 Subject: [PATCH] Spelling error in state module --- salt/states/mysql_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/states/mysql_user.py b/salt/states/mysql_user.py index 42794bd5e8..c0e3148fdf 100644 --- a/salt/states/mysql_user.py +++ b/salt/states/mysql_user.py @@ -18,7 +18,7 @@ The mysql_user module is used to manage MySQL users. def __virtual__(): ''' - Olny load if the mysql module is in __salt__ + Only load if the mysql module is in __salt__ ''' return 'mysql_user' if 'mysql.user_create' in __salt__ else False