~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

(jelmer) Add WorkingTree.get_config_stack(). (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
255
255
 
256
256
        :return: an integer. -1 means never save.
257
257
        """
258
 
        # FIXME: We want a WorkingTreeStack here -- vila 20110812
259
 
        conf = config.BranchStack(self.branch)
 
258
        conf = self.get_config_stack()
260
259
        return conf.get('bzr.workingtree.worth_saving_limit')
261
260
 
262
261
    def filter_unversioned_files(self, paths):