~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/statcache.py

  • Committer: Martin Pool
  • Date: 2005-05-11 02:38:03 UTC
  • Revision ID: mbp@sourcefrog.net-20050511023803-3b21bfecdea9a454
- fix statcache update from subdirectories

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
SC_SHA1    = 1 
69
69
 
70
70
 
71
 
def fingerprint(path, abspath):
 
71
def fingerprint(abspath):
72
72
    try:
73
73
        fs = os.lstat(abspath)
74
74
    except OSError:
172
172
    dangerfiles = Set()
173
173
    now = int(time.time())
174
174
 
175
 
    mutter('update statcache under %r' % basedir)
 
175
    ## mutter('update statcache under %r' % basedir)
176
176
    for file_id, path in to_update:
177
177
        abspath = os.path.join(basedir, path)
178
 
        fp = fingerprint(abspath, path)
 
178
        fp = fingerprint(abspath)
179
179
        stat_cnt += 1
180
180
        
181
181
        cacheentry = cache.get(file_id)