~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Robert Collins
  • Date: 2006-06-13 12:55:45 UTC
  • mfrom: (1757.2.16 add)
  • mto: This revision was merged to the branch mainline in revision 1769.
  • Revision ID: robertc@robertcollins.net-20060613125545-cc77adde61a471bf
Merge add performance improvements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1066
1066
    try:
1067
1067
        working_kind = working_tree.kind(file_id)
1068
1068
        has_contents = True
1069
 
    except OSError, e:
1070
 
        if e.errno != errno.ENOENT:
1071
 
            raise
 
1069
    except NoSuchFile:
1072
1070
        has_contents = False
1073
1071
        contents_mod = True
1074
1072
        meta_mod = False