[Updated] D10950: dirstate-entry: goes through the `dirstatetuple` constructor in all cases
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Tue Jul 6 19:07:17 UTC 2021
Closed by commit rHG67d11b0f659f: dirstate-entry: goes through the `dirstatetuple` constructor in all cases (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10950?vs=28852&id=28889
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10950/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D10950
AFFECTED FILES
mercurial/pure/parsers.py
CHANGE DETAILS
diff --git a/mercurial/pure/parsers.py b/mercurial/pure/parsers.py
--- a/mercurial/pure/parsers.py
+++ b/mercurial/pure/parsers.py
@@ -425,7 +425,7 @@
if b'\0' in f:
f, c = f.split(b'\0')
copymap[f] = c
- dmap[f] = e[:4]
+ dmap[f] = dirstatetuple(*e[:4])
return parents
To: marmoute, #hg-reviewers, SimonSapin, pulkit
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210706/21f6ee83/attachment-0002.html>
More information about the Mercurial-patches
mailing list