~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Ian Clatworthy
  • Date: 2009-01-27 23:02:21 UTC
  • mto: (3964.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3965.
  • Revision ID: ian.clatworthy@canonical.com-20090127230221-mqumav0ghxkpybba
feedback from jam's review

Show diffs side-by-side

added added

removed removed

Lines of Context:
867
867
                                short_status=False)
868
868
        if revision.diff is not None:
869
869
            to_file.write(indent + 'diff:\n')
870
 
            self.show_diff(to_file, revision.diff, indent + '  ')
 
870
            # Note: we explicitly don't indent the diff (relative to the
 
871
            # revision information) so that the output can be fed to patch -p0
 
872
            self.show_diff(to_file, revision.diff, indent)
871
873
 
872
874
 
873
875
class ShortLogFormatter(LogFormatter):