From patchwork Mon Sep 9 21:23:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6810: revlog: use the new sidedata map return in the sidedata method From: phabricator X-Patchwork-Id: 41605 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Mon, 9 Sep 2019 21:23:59 +0000 marmoute updated this revision to Diff 16476. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6810?vs=16415&id=16476 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6810/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6810 AFFECTED FILES mercurial/revlog.py CHANGE DETAILS To: marmoute, yuja, durin42, indygreg, #hg-reviewers Cc: mercurial-devel diff --git a/mercurial/revlog.py b/mercurial/revlog.py --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -1623,8 +1623,8 @@ mapping object will likely be used in the future for a more efficient/lazy code. """ - # XXX will actualy return data once storage is implemented. - return {} + text, sidemeta = self._revision(nodeorrev, _df)[1] + return sidemeta def _revisiondata(self, nodeorrev, _df=None, raw=False): # deal with argument type