mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Skip cleaning images cache folder.
This commit is contained in:
parent
f404f6f3ee
commit
f2a1331110
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue