mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
Use print function
This commit is contained in:
parent
3d2a056ad4
commit
683c2913c5
4 changed files with 8 additions and 8 deletions
2
v2/ansible/plugins/cache/redis.py
vendored
2
v2/ansible/plugins/cache/redis.py
vendored
|
@ -28,7 +28,7 @@ from ansible.plugins.cache.base import BaseCacheModule
|
|||
try:
|
||||
from redis import StrictRedis
|
||||
except ImportError:
|
||||
print "The 'redis' python module is required, 'pip install redis'"
|
||||
print("The 'redis' python module is required, 'pip install redis'")
|
||||
sys.exit(1)
|
||||
|
||||
class CacheModule(BaseCacheModule):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue