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

  • Committer: Martin Pool
  • Date: 2009-08-12 08:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 4632.
  • Revision ID: mbp@sourcefrog.net-20090812080048-q20sundx3or4raav
Correction to formatting of plugins in apport

Show diffs side-by-side

added added

removed removed

Lines of Context:
537
537
 
538
538
    plugin_lines = []
539
539
    for name, a_plugin in sorted(plugin.plugins().items()):
540
 
        plugin_lines.append("  %-20s %s [%s]\n" %
 
540
        plugin_lines.append("  %-20s %s [%s]" %
541
541
            (name, a_plugin.path(), a_plugin.__version__))
542
542
    pr['BzrPlugins'] = '\n'.join(plugin_lines)
543
543