##// END OF EJS Templates
record: fix indentation
Benoit Boissinot -
r7911:0b2561b5 default
parent child Browse files
Show More
@@ -329,9 +329,9 b' def filterpatch(ui, chunks):'
329 329 if resp_file[0] is None and resp_all[0] is None:
330 330 chunk.pretty(ui)
331 331 r = total == 1 and prompt(_('record this change to %r?') %
332 chunk.filename()) or \
333 prompt(_('record change %d/%d to %r?') %
334 (pos, total, chunk.filename()))
332 chunk.filename()) \
333 or prompt(_('record change %d/%d to %r?') %
334 (pos, total, chunk.filename()))
335 335 if r == _('y'):
336 336 if fixoffset:
337 337 chunk = copy.copy(chunk)
General Comments 0
You need to be logged in to leave comments. Login now