mercurial/patch.py
changeset 6760 4faaa0535ea7
parent 6758 87c704ac92d4
child 6762 f67d1468ac50
equal deleted inserted replaced
6759:9d2ab50803e9 6760:4faaa0535ea7
  1187     # force manifest reading
  1187     # force manifest reading
  1188     man1 = ctx1.manifest()
  1188     man1 = ctx1.manifest()
  1189     date1 = util.datestr(ctx1.date())
  1189     date1 = util.datestr(ctx1.date())
  1190 
  1190 
  1191     if not changes:
  1191     if not changes:
  1192         changes = repo.status(node1, node2, match=match)[:5]
  1192         changes = repo.status(node1, node2, match=match)
  1193     modified, added, removed, deleted, unknown = changes
  1193     modified, added, removed = changes[:3]
  1194 
  1194 
  1195     if not modified and not added and not removed:
  1195     if not modified and not added and not removed:
  1196         return
  1196         return
  1197 
  1197 
  1198     ctx2 = repo[node2]
  1198     ctx2 = repo[node2]