~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/crash.py

Merge pt1 hooks branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
255
255
 
256
256
 
257
257
def _format_plugin_list():
258
 
    plugin_lines = []
259
 
    for name, a_plugin in sorted(plugin.plugins().items()):
260
 
        plugin_lines.append("  %-20s %s [%s]" %
261
 
            (name, a_plugin.path(), a_plugin.__version__))
262
 
    return '\n'.join(plugin_lines)
 
258
    return ''.join(plugin.describe_plugins(show_paths=True))
263
259
 
264
260
 
265
261
def _format_module_list():