Submitter | phabricator |
---|---|
Date | July 19, 2021, 10:44 a.m. |
Message ID | <differential-rev-PHID-DREV-nch6ag5agqnpykgvft24-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/49466/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py +++ b/hgext/largefiles/lfutil.py @@ -168,7 +168,9 @@ def set_untracked(self, f): return super(largefilesdirstate, self).set_untracked(unixpath(f)) - def normal(self, f): + def normal(self, f, parentfiledata=None): + # not sure if we should pass the `parentfiledata` down or throw it + # away. So throwing it away to stay on the safe side. return super(largefilesdirstate, self).normal(unixpath(f)) def remove(self, f):