~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-07 00:49:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6465.
  • Revision ID: jelmer@samba.org-20120207004958-rdtzmipi10p1oq97
Migrate 'bugtracker' setting to config stacks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2673
2673
a file has been touched.
2674
2674
'''))
2675
2675
option_registry.register(
 
2676
    Option('bugtracker', default=None,
 
2677
           help='''\
 
2678
Default bug tracker to use.
 
2679
 
 
2680
This bug tracker will be used for example when marking bugs
 
2681
as fixed using ``bzr commit --fixes``, if no explicit
 
2682
bug tracker was specified.
 
2683
'''))
 
2684
option_registry.register(
2676
2685
    Option('check_signatures', default=CHECK_IF_POSSIBLE,
2677
2686
           from_unicode=signature_policy_from_unicode,
2678
2687
           help='''\
2899
2908
    'bzrlib.transport.http._urllib2_wrappers', 'opt_ssl_cert_reqs')
2900
2909
 
2901
2910
 
2902
 
 
2903
2911
class Section(object):
2904
2912
    """A section defines a dict of option name => value.
2905
2913