~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-28 15:52:02 UTC
  • mfrom: (2761.1.3 tree-conflicts)
  • Revision ID: pqm@pqm.ubuntu.com-20070828155202-pcq659o80mx4f4p3
Fix status -r path / Tree.conflicts (Lukas Lalinsky)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    delta,
27
27
    osutils,
28
28
    revision as _mod_revision,
 
29
    conflicts as _mod_conflicts,
29
30
    symbol_versioning,
30
31
    )
31
32
from bzrlib.decorators import needs_read_lock
104
105
 
105
106
        Each conflict is an instance of bzrlib.conflicts.Conflict.
106
107
        """
107
 
        return []
 
108
        return _mod_conflicts.ConflictList()
108
109
 
109
110
    def extras(self):
110
111
        """For trees that can have unversioned files, return all such paths."""