~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Aaron Bentley
  • Date: 2006-06-21 21:09:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1804.
  • Revision ID: abentley@panoramicfeedback.com-20060621210920-e9fadec3d1b10d24
Deprecated Branch.tree_config

Show diffs side-by-side

added added

removed removed

Lines of Context:
1220
1220
            url = urlutils.relative_url(self.base, url)
1221
1221
            self.control_files.put('parent', url + '\n')
1222
1222
 
 
1223
    @deprecated_function(zero_nine)
1223
1224
    def tree_config(self):
 
1225
        """DEPRECATED; call get_config instead.  
 
1226
        TreeConfig has become part of BranchConfig."""
1224
1227
        return TreeConfig(self)
1225
1228
 
1226
1229