~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisiontree.py

  • Committer: Aaron Bentley
  • Date: 2007-09-02 22:38:54 UTC
  • mfrom: (2776 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2777.
  • Revision ID: aaron.bentley@utoronto.ca-20070902223854-vh6jc4c19w94htsm
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
        file_id = osutils.safe_file_id(file_id)
82
82
        return ''.join(self.get_file_lines(file_id))
83
83
 
84
 
    def get_file(self, file_id):
 
84
    def get_file(self, file_id, path=None):
85
85
        file_id = osutils.safe_file_id(file_id)
86
86
        return StringIO(self.get_file_text(file_id))
87
87