Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/client/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar_network/client/cache.py')
-rw-r--r--sugar_network/client/cache.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/sugar_network/client/cache.py b/sugar_network/client/cache.py
index 0858969..988f789 100644
--- a/sugar_network/client/cache.py
+++ b/sugar_network/client/cache.py
@@ -15,10 +15,9 @@
import os
import sys
-import json
import time
import logging
-from os.path import exists
+from os.path import exists, basename
from sugar_network import client
from sugar_network.toolkit import pylru, enforce
@@ -100,11 +99,9 @@ class Cache(object):
meta = res.meta('data')
if not meta or 'blob_size' not in meta:
continue
- clone = contexts.path(res['context'], 'clone')
- if exists(clone):
- with file(clone) as f:
- if json.load(f) == res.guid:
- continue
+ clone = contexts.path(res['context'], '.clone')
+ if exists(clone) and basename(os.readlink(clone)) == res.guid:
+ continue
pool.append((
os.stat(impls.path(res.guid)).st_mtime,
res.guid,