~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Martin Pool
  • Date: 2005-09-22 06:28:42 UTC
  • Revision ID: mbp@sourcefrog.net-20050922062842-f4be853df544a7ac
- remove extra verification of files retrieved from tree 
  when not in debug mode

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
                         doc="Inventory of this Tree")
77
77
 
78
78
    def _check_retrieved(self, ie, f):
 
79
        if not __debug__:
 
80
            return  
79
81
        fp = fingerprint_file(f)
80
82
        f.seek(0)
81
83