~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-19 11:50:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6146.
  • Revision ID: jriddell@canonical.com-20110919115028-nqwtefg0hgb141oq
fix log formatting of bug line

Show diffs side-by-side

added added

removed removed

Lines of Context:
2113
2113
                          len(row) > 1 and row[1] == 'fixed']
2114
2114
 
2115
2115
        if fixed_bug_urls:
2116
 
            return {ngettext('fixes bug', 'fixes bug', len(fixed_bug_urls)):\
2117
 
                    ''.join(fixed_bug_urls)}
 
2116
            return {ngettext('fixes bug', 'fixes bugs', len(fixed_bug_urls)):\
 
2117
                    ' '.join(fixed_bug_urls)}
2118
2118
    return {}
2119
2119
 
2120
2120
properties_handler_registry.register('bugs_properties_handler',