~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Patch Queue Manager
  • Date: 2012-02-07 13:18:40 UTC
  • mfrom: (6463.1.1 migrate-bugtracker)
  • Revision ID: pqm@pqm.ubuntu.com-20120207131840-0whz346qm1ikv3pp
(jelmer) Migrate the 'bugtracker' configuration setting to config stacks.
 (Jelmer Vernooij)

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