Show More
@@ -168,7 +168,9 b' class largefilesdirstate(dirstate.dirsta' | |||
|
168 | 168 | def set_untracked(self, f): |
|
169 | 169 | return super(largefilesdirstate, self).set_untracked(unixpath(f)) |
|
170 | 170 | |
|
171 | def normal(self, f): | |
|
171 | def normal(self, f, parentfiledata=None): | |
|
172 | # not sure if we should pass the `parentfiledata` down or throw it | |
|
173 | # away. So throwing it away to stay on the safe side. | |
|
172 | 174 | return super(largefilesdirstate, self).normal(unixpath(f)) |
|
173 | 175 | |
|
174 | 176 | def remove(self, f): |
General Comments 0
You need to be logged in to leave comments.
Login now