##// END OF EJS Templates
patch: use ctx1.status(ctx2) instead of repo.status(ctx1, ctx2)...
Martin von Zweigbergk -
r38796:59af0c7d default
parent child Browse files
Show More
@@ -2326,7 +2326,7 b' def diffhunks(repo, node1=None, node2=No'
2326 relfiltered = True
2326 relfiltered = True
2327
2327
2328 if not changes:
2328 if not changes:
2329 changes = repo.status(ctx1, ctx2, match=match)
2329 changes = ctx1.status(ctx2, match=match)
2330 modified, added, removed = changes[:3]
2330 modified, added, removed = changes[:3]
2331
2331
2332 if not modified and not added and not removed:
2332 if not modified and not added and not removed:
General Comments 0
You need to be logged in to leave comments. Login now