~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

Fix status to not use pending_merges.

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
 
152
152
def show_pending_merges(new, to_file):
153
153
    """Write out a display of pending merges in a working tree."""
154
 
    pending = new.pending_merges()
 
154
    parents = new.get_parent_ids()
 
155
    if len(parents) < 2:
 
156
        return
 
157
    pending = parents[1:]
155
158
    branch = new.branch
156
 
    if len(pending) == 0:
157
 
        return
 
159
    last_revision = parents[0]
158
160
    print >>to_file, 'pending merges:'
159
 
    last_revision = branch.last_revision()
160
161
    if last_revision is not None:
161
162
        ignore = set(branch.repository.get_ancestry(last_revision))
162
163
    else:
163
164
        ignore = set([None])
164
 
    for merge in new.pending_merges():
 
165
    # TODO: this could be improved using merge_sorted - we'd get the same 
 
166
    # output rather than one level of indent.
 
167
    for merge in pending:
165
168
        ignore.add(merge)
166
169
        try:
167
170
            from bzrlib.osutils import terminal_width