From d63b08352861cb8420e611dc4b969d87bceaa14a Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Wed, 31 Oct 2012 13:06:53 -0500 Subject: [PATCH] fix typo --- salt/master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/master.py b/salt/master.py index 1549dfa01b..d5d0bdb808 100644 --- a/salt/master.py +++ b/salt/master.py @@ -1065,7 +1065,7 @@ class AESFuncs(object): try: ret = getattr(self, func)(load) except AttributeError as exc: - log.error(('Received function {0} which in unavailable on the ' + log.error(('Received function {0} which is unavailable on the ' 'master, returning False').format(exc)) return self.crypticle.dumps(False) # Don't encrypt the return value for the _return func