~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: INADA Naoki
  • Date: 2011-05-17 00:45:09 UTC
  • mfrom: (5875 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5891.
  • Revision ID: songofacandy@gmail.com-20110517004509-q58negjbdjh7t6u1
mergeĀ fromĀ lp:bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
4633
4633
    @display_command
4634
4634
    def run(self, verbose=False):
4635
4635
        from bzrlib import plugin
 
4636
        # Don't give writelines a generator as some codecs don't like that
4636
4637
        self.outf.writelines(
4637
 
            plugin.describe_plugins(show_paths=verbose))
 
4638
            list(plugin.describe_plugins(show_paths=verbose)))
4638
4639
 
4639
4640
 
4640
4641
class cmd_testament(Command):