mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
94670f7f95
Updated rsstorrents to not bother using requests sessions.
19 lines
369 B
Python
19 lines
369 B
Python
from textwrap import dedent
|
|
|
|
try:
|
|
from .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 .redis_cache import RedisCache
|
|
except ImportError:
|
|
pass
|