/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/log.py

  • Committer: Andrea Bolognani
  • Date: 2009-03-12 12:53:44 UTC
  • mto: (4137.1.1 jamesw-integration)
  • mto: This revision was merged to the branch mainline in revision 4138.
  • Revision ID: eof@kiyuko.org-20090312125344-sy02m2o640453ha0
Renamed the ChangeLogLogFormatter class to GnuChangelogLogFormatter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1374
1374
        return self.truncate(prefix + " ".join(out).rstrip('\n'), max_chars)
1375
1375
 
1376
1376
 
1377
 
class ChangeLogLogFormatter(LogFormatter):
 
1377
class GnuChangelogLogFormatter(LogFormatter):
1378
1378
 
1379
1379
    supports_merge_revisions = True
1380
1380
    supports_delta = True
1440
1440
                                'Detailed log format')
1441
1441
log_formatter_registry.register('line', LineLogFormatter,
1442
1442
                                'Log format with one line per revision')
1443
 
log_formatter_registry.register(
1444
 
    'gnu-changelog', ChangeLogLogFormatter,
1445
 
    'Format used by GNU ChangeLog files')
 
1443
log_formatter_registry.register('gnu-changelog', GnuChangelogLogFormatter,
 
1444
                                'Format used by GNU ChangeLog files')
1446
1445
 
1447
1446
 
1448
1447
def register_formatter(name, formatter):