~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

[merge] robert

Show diffs side-by-side

added added

removed removed

Lines of Context:
1764
1764
    def run(self):
1765
1765
        import bzrlib.plugin
1766
1766
        from inspect import getdoc
1767
 
        for plugin in bzrlib.plugin.all_plugins:
 
1767
        for name, plugin in bzrlib.plugin.all_plugins().items():
1768
1768
            if hasattr(plugin, '__path__'):
1769
1769
                print plugin.__path__[0]
1770
1770
            elif hasattr(plugin, '__file__'):