/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: Martin Pool
  • Date: 2007-07-11 04:15:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2605.
  • Revision ID: mbp@sourcefrog.net-20070711041548-n1om2ptyj2j01r6l
Clean up old/unused global options

Show diffs side-by-side

added added

removed removed

Lines of Context:
332
332
 
333
333
        Maps from long option name to option object."""
334
334
        r = dict()
335
 
        r['help'] = option.Option.OPTIONS['help']
 
335
        r['help'] = option._help_option
336
336
        for o in self.takes_options:
337
337
            if isinstance(o, basestring):
338
338
                o = option.Option.OPTIONS[o]