1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #13607 from mattclay/test-cache-typo

Fixed import typo for memcache module in tests.
This commit is contained in:
Brian Coca 2015-12-21 10:23:38 -05:00
commit e957335b0d

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: