~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/option.py

  • Committer: Vincent Ladeuil
  • Date: 2011-09-27 13:18:53 UTC
  • mto: This revision was merged to the branch mainline in revision 6178.
  • Revision ID: v.ladeuil+lp@free.fr-20110927131853-bafk1zx2zyv5otu1
Follow the lead of other 'global' options which are not declared in option.py but handled in bzrlib.commands.run_bzr instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
537
537
# Declare the standard options
538
538
_standard_option('help', short_name='h',
539
539
                 help='Show help message.')
540
 
_standard_list_option('override-config', short_name='O', type=unicode,
541
 
                      hidden=True,
542
 
                      help='Override a configuration option value,'
543
 
                      ' e.g. -Oname=value')
544
540
_standard_option('quiet', short_name='q',
545
541
                 help="Only display errors and warnings.",
546
542
                 custom_callback=_verbosity_level_callback)