equal
deleted
inserted
replaced
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] |