/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Lukáš Lalinsky
  • Date: 2007-08-27 14:55:48 UTC
  • mto: (2761.1.1 tree-conflicts)
  • mto: This revision was merged to the branch mainline in revision 2762.
  • Revision ID: lalinsky@gmail.com-20070827145548-s89tzqovpyvqdp61
Return ConflictsList() instead of [] from Tree.conflicts.

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."""