##// END OF EJS Templates
automv: access status fields by name, not index...
Martin von Zweigbergk -
r42747:2702dfc7 default
parent child Browse files
Show More
@@ -81,8 +81,8 b' def _interestingfiles(repo, matcher):'
81
81
82 """
82 """
83 stat = repo.status(match=matcher)
83 stat = repo.status(match=matcher)
84 added = stat[1]
84 added = stat.added
85 removed = stat[2]
85 removed = stat.removed
86
86
87 copy = copies.pathcopies(repo['.'], repo[None], matcher)
87 copy = copies.pathcopies(repo['.'], repo[None], matcher)
88 # remove the copy files for which we already have copy info
88 # remove the copy files for which we already have copy info
General Comments 0
You need to be logged in to leave comments. Login now