134
134
raise errors.BzrCommandError(str(e))
137
_raise_if_nonexistent(specific_files, old, new)
138
delta = new.changes_from(old, want_unchanged=show_unchanged,
139
specific_files=specific_files)
142
show_unchanged=show_unchanged,
144
short_status_letter = '?'
146
short_status_letter = ''
147
list_paths('unknown', new.unknowns(), specific_files, to_file,
149
conflict_title = False
150
# show the new conflicts only for now. XXX: get them from the delta.
151
for conflict in new.conflicts():
152
if not short and conflict_title is False:
153
print >> to_file, "conflicts:"
154
conflict_title = True
159
print >> to_file, "%s %s" % (prefix, conflict)
160
if new_is_working_tree and show_pending:
161
show_pending_merges(new, to_file, short)
140
_raise_if_nonexistent(specific_files, old, new)
141
delta = new.changes_from(old, want_unchanged=show_unchanged,
142
specific_files=specific_files)
145
show_unchanged=show_unchanged,
147
short_status_letter = '?'
149
short_status_letter = ''
150
list_paths('unknown', new.unknowns(), specific_files, to_file,
152
conflict_title = False
153
# show the new conflicts only for now. XXX: get them from the delta.
154
for conflict in new.conflicts():
155
if not short and conflict_title is False:
156
print >> to_file, "conflicts:"
157
conflict_title = True
162
print >> to_file, "%s %s" % (prefix, conflict)
163
if new_is_working_tree and show_pending:
164
show_pending_merges(new, to_file, short)