Fixed import typo for memcache module in tests.

The typo caused the test for the memcached cache plugin to be skipped
even when the necessary memcache python module was installed.
pull/13607/head
Matt Clay 9 years ago
parent fcc9258b74
commit d2ad17e88f

@ -26,7 +26,7 @@ from ansible.plugins.cache.memory import CacheModule as MemoryCache
HAVE_MEMCACHED = True
try:
import memcached
import memcache
except ImportError:
HAVE_MEMCACHED = False
else:

Loading…
Cancel
Save