~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-09 16:49:22 UTC
  • mfrom: (1534.10.27 bzr.ttransform)
  • Revision ID: pqm@pqm.ubuntu.com-20060409164922-071803e906c8b96d
New conflict-handling system

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
 
137
137
        if new_is_working_tree:
138
138
            list_paths('unknown', new.unknowns(), specific_files, to_file)
139
 
            list_paths('conflicts', new.iter_conflicts(), specific_files, to_file)
 
139
            conflict_title = False
 
140
            for conflict in wt.conflicts():
 
141
                if conflict_title is False:
 
142
                    print >> to_file, "conflicts:"
 
143
                    conflict_title = True
 
144
                print >> to_file, "  %s" % conflict
140
145
        if new_is_working_tree and show_pending:
141
146
            show_pending_merges(new, to_file)
142
147
    finally: