From 2a4079eeb6e881a446082462f369173c6b97a1c7 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 2 Sep 2014 13:17:47 -0500 Subject: [PATCH] Update format fields to work with python2.6 --- lib/ansible/cache/memcached.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cache/memcached.py b/lib/ansible/cache/memcached.py index bd3730d280d..1463d581ca6 100644 --- a/lib/ansible/cache/memcached.py +++ b/lib/ansible/cache/memcached.py @@ -150,7 +150,7 @@ class CacheModule(BaseCacheModule): self._keys = CacheModuleKeys(self._cache, self._cache.get(CacheModuleKeys.PREFIX) or []) def _make_key(self, key): - return "{}{}".format(self._prefix, key) + return "{0}{1}".format(self._prefix, key) def _expire_keys(self): if self._timeout > 0: