1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-03-04 02:19:41 -05:00

19 lines
407 B
Python
Raw Normal View History

from textwrap import dedent
try:
from cachecontrol.caches.file_cache import FileCache
except ImportError:
notice = dedent('''
NOTE: In order to use the FileCache you must have
lockfile installed. You can install it via pip:
pip install lockfile
''')
print(notice)
try:
import redis
from cachecontrol.caches.redis_cache import RedisCache
except ImportError:
pass