~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Robert Collins
  • Date: 2005-10-10 08:29:42 UTC
  • mfrom: (1185.15.10)
  • Revision ID: robertc@robertcollins.net-20051010082942-4d1442a783ba926d
bugfix from scott for symlink support when not in the tree root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
            return bool(stat.S_ISREG(mode) and stat.S_IEXEC&mode)
186
186
 
187
187
    def get_symlink_target(self, file_id):
188
 
        return os.readlink(self.id2path(file_id))
 
188
        return os.readlink(self.id2abspath(file_id))
189
189
 
190
190
    def file_class(self, filename):
191
191
        if self.path2id(filename):