comparison mercurial/patch.py @ 6760:4faaa0535ea7

status: clean up all users for unknown files
author Matt Mackall <mpm@selenic.com>
date Fri, 27 Jun 2008 13:43:29 -0500
parents 87c704ac92d4
children f67d1468ac50
comparison
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]