hgext/record.py
branchstable
changeset 17081 b013baa3898e
parent 16328 d388c3fc8319
child 17091 f7a2849ef8cd
equal deleted inserted replaced
17080:b335759e0454 17081:b013baa3898e
   378             continue
   378             continue
   379         seen.add(hdr)
   379         seen.add(hdr)
   380         if skipall is None:
   380         if skipall is None:
   381             h.pretty(ui)
   381             h.pretty(ui)
   382         msg = (_('examine changes to %s?') %
   382         msg = (_('examine changes to %s?') %
   383                _(' and ').join(map(repr, h.files())))
   383                _(' and ').join("'%s'" % f for f in h.files()))
   384         r, skipfile, skipall, np = prompt(skipfile, skipall, msg, None)
   384         r, skipfile, skipall, np = prompt(skipfile, skipall, msg, None)
   385         if not r:
   385         if not r:
   386             continue
   386             continue
   387         applied[h.filename()] = [h]
   387         applied[h.filename()] = [h]
   388         if h.allhunks():
   388         if h.allhunks():