/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/revisiontree.py

  • Committer: Ian Clatworthy
  • Date: 2007-08-30 02:00:37 UTC
  • mto: (2772.2.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2774.
  • Revision ID: ian.clatworthy@internode.on.net-20070830020037-lvqrgnm7lbmmcl8y
Incorporate feedback from abentley

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