Browse Source

Don't remove version file

pull/1673/merge
Ruud 12 years ago
parent
commit
bfdc8d1053
  1. 2
      couchpotato/core/plugins/file/main.py

2
couchpotato/core/plugins/file/main.py

@ -73,7 +73,7 @@ class FileManager(Plugin):
db = get_session()
for root, dirs, walk_files in os.walk(Env.get('cache_dir')):
for filename in walk_files:
if root == python_cache or 'minified' in filename: continue
if root == python_cache or 'minified' in filename or 'version' in filename: continue
file_path = os.path.join(root, filename)
f = db.query(File).filter(File.path == toUnicode(file_path)).first()
if not f:

Loading…
Cancel
Save