~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Ian Clatworthy
  • Date: 2008-05-13 06:52:19 UTC
  • mto: (3515.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3516.
  • Revision ID: ian.clatworthy@canonical.com-20080513065219-uqfkrcr1iooh33je
rename properties to attributes

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
        """
306
306
        provider = self._get_attributes_provider()
307
307
        for path in path_names:
308
 
            yield provider.get_properties(path, attr_names)
 
308
            yield provider.get_attributes(path, attr_names)
309
309
 
310
310
    def _get_attributes_provider(self):
311
311
        """Get the source to get attributes from.
314
314
        """
315
315
        # Note: In the future, attributes may be found by looking in
316
316
        # the tree as well, not just in the user configuration
317
 
        return properties._user_properties_provider
 
317
        return attributes._user_attributes_provider
318
318
 
319
319
    def get_symlink_target(self, file_id):
320
320
        """Get the target for a given file_id.