From a282ae508b4914f58229229d8ceeb0badf067350 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 21 Feb 2014 10:39:05 -0600 Subject: [PATCH] correct typo of config option name in error message Change-Id: I146e6ac742649ec24c6fbfd8b73a5359e447e76f --- keystoneclient/middleware/auth_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystoneclient/middleware/auth_token.py b/keystoneclient/middleware/auth_token.py index dae51cb94..220ffee69 100644 --- a/keystoneclient/middleware/auth_token.py +++ b/keystoneclient/middleware/auth_token.py @@ -495,7 +495,7 @@ class AuthProtocol(object): raise ConfigurationError('memcache_security_strategy must be ' 'ENCRYPT or MAC') if not self._memcache_secret_key: - raise ConfigurationError('mecmache_secret_key must be defined ' + raise ConfigurationError('memcache_secret_key must be defined ' 'when a memcache_security_strategy ' 'is defined')