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.
This commit is contained in:
Matt Clay 2015-12-19 00:08:49 -08:00 committed by Brian Coca
parent 80e109e1ad
commit ce17557b84

View file

@ -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: