~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Robert Collins
  • Date: 2005-10-14 05:36:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1456.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051014053601-3d7ae175e179ad85
BranchConfigs inherit signature_checking policy from their LocationConfig.

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
        
246
246
        return self._get_location_config()._get_user_id()
247
247
 
 
248
    def _get_signature_checking(self):
 
249
        """See Config._get_signature_checking."""
 
250
        return self._get_location_config()._get_signature_checking()
 
251
 
248
252
    def __init__(self, branch):
249
253
        super(BranchConfig, self).__init__()
250
254
        self._location_config = None