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