~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

bzr rm removes the working file

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
            print >>to_file, 'unknown:'
196
196
            show_list(self.unversioned)
197
197
 
 
198
    def get_changes_as_text(self, show_ids=False, show_unchanged=False,
 
199
             short_status=False):
 
200
        import StringIO
 
201
        output = StringIO.StringIO()
 
202
        self.show(output, show_ids, show_unchanged, short_status)
 
203
        return output.getvalue()
198
204
 
199
205
@deprecated_function(zero_nine)
200
206
def compare_trees(old_tree, new_tree, want_unchanged=False,