~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-06 10:25:20 UTC
  • mfrom: (1711.2.33 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060606102520-64c05752f159a669
[patch] Matthieu Moy, make 'bzr log --line' only use the first line as a summary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
461
461
            out.append("%d:" % revno)
462
462
        out.append(self.truncate(self.short_committer(rev), 20))
463
463
        out.append(self.date_string(rev))
464
 
        out.append(self.message(rev).replace('\n', ' '))
 
464
        out.append(rev.get_summary())
465
465
        return self.truncate(" ".join(out).rstrip('\n'), max_chars)
466
466
 
467
467