##// END OF EJS Templates
automv: simplify retrieving the status...
Martijn Pieters -
r28146:28024d0d default
parent child Browse files
Show More
@@ -46,7 +46,7 b' def mvcheck(orig, ui, repo, *pats, **opt'
46 return orig(ui, repo, *pats, **opts)
46 return orig(ui, repo, *pats, **opts)
47
47
48 def _interestingfiles(repo, matcher):
48 def _interestingfiles(repo, matcher):
49 stat = repo.status(repo['.'], repo[None], matcher)
49 stat = repo.status(match=matcher)
50 added = stat[1]
50 added = stat[1]
51 removed = stat[2]
51 removed = stat[2]
52
52
General Comments 0
You need to be logged in to leave comments. Login now