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

  • Committer: John Arbash Meinel
  • Date: 2008-09-05 03:11:40 UTC
  • mfrom: (3691 +trunk)
  • mto: (3697.7.4 1.7)
  • mto: This revision was merged to the branch mainline in revision 3748.
  • Revision ID: john@arbash-meinel.com-20080905031140-hj0adlcf30l7i99v
Merge in bzr.dev 3691

Show diffs side-by-side

added added

removed removed

Lines of Context:
366
366
            result += ':See also: '
367
367
            result += ', '.join(see_also) + '\n'
368
368
 
369
 
        # If this will be rendered as plan text, convert it
 
369
        # If this will be rendered as plain text, convert it
370
370
        if plain:
371
371
            import bzrlib.help_topics
372
372
            result = bzrlib.help_topics.help_as_plain_text(result)
389
389
                    sections[label] += '\n' + section
390
390
                else:
391
391
                    sections[label] = section
392
 
            
 
392
 
393
393
        lines = text.rstrip().splitlines()
394
394
        summary = lines.pop(0)
395
395
        sections = {}
497
497
        self._setup_outf()
498
498
 
499
499
        return self.run(**all_cmd_args)
500
 
    
 
500
 
501
501
    def run(self):
502
502
        """Actually run the command.
503
503