~luoyonggang/bzr-svn/b2

« back to all changes in this revision

Viewing changes to repository.py

  • Committer: Yonggang Luo
  • Date: 2011-07-31 14:51:30 UTC
  • Revision ID: luoyonggang@gmail.com-20110731145130-pyunts8x3oa5q438
First, get the things working!

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
 
424
424
        if "log" in use_cache:
425
425
            log_cache = self._cache_obj.open_logwalker()
426
 
            if log_cache.last_revnum() > self.get_latest_revnum():
 
426
            if log_cache.max_revnum() > self.get_latest_revnum():
427
427
                errors.warn_uuid_reuse(self.uuid, self.base)
428
428
            self._log = logwalker.CachingLogWalker(self._log,
429
429
                log_cache)