1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Skip cleaning images cache folder.

This commit is contained in:
echel0n 2014-07-27 05:34:03 -07:00
parent f404f6f3ee
commit f2a1331110

View File

@ -1326,8 +1326,8 @@ def clearCache(force=False):
for cache_root, cache_dirs, cache_files in os.walk(sickbeard.CACHE_DIR):
path = os.path.basename(cache_root)
# skip rss provider caches
if path == 'rss':
# skip these cache folders
if path in ['rss', 'images']:
continue
for file in cache_files: