/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: Martin Packman
  • Date: 2011-11-23 18:59:43 UTC
  • mto: This revision was merged to the branch mainline in revision 6304.
  • Revision ID: martin.packman@canonical.com-20111123185943-1s2ltxqt5ugohh0w
Add full stops to various registry help strings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1807
1807
 
1808
1808
 
1809
1809
log_formatter_registry.register('short', ShortLogFormatter,
1810
 
                                'Moderately short log format')
 
1810
                                'Moderately short log format.')
1811
1811
log_formatter_registry.register('long', LongLogFormatter,
1812
 
                                'Detailed log format')
 
1812
                                'Detailed log format.')
1813
1813
log_formatter_registry.register('line', LineLogFormatter,
1814
 
                                'Log format with one line per revision')
 
1814
                                'Log format with one line per revision.')
1815
1815
log_formatter_registry.register('gnu-changelog', GnuChangelogLogFormatter,
1816
 
                                'Format used by GNU ChangeLog files')
 
1816
                                'Format used by GNU ChangeLog files.')
1817
1817
 
1818
1818
 
1819
1819
def register_formatter(name, formatter):