Submitter | Pierre-Yves David |
---|---|
Date | Sept. 23, 2020, 9:51 p.m. |
Message ID | <27f2fb9b84842c698f0e.1600897914@nodosa.octobus.net> |
Download | mbox | patch |
Permalink | /patch/47263/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/changelog.py b/mercurial/changelog.py --- a/mercurial/changelog.py +++ b/mercurial/changelog.py @@ -340,9 +340,7 @@ class changelogrevision(object): @property def filesremoved(self): if self._cpsd: - rawindices = self._sidedata.get(sidedatamod.SD_FILESREMOVED) - if not rawindices: - return [] + return self.changes.removed else: rawindices = self.extra.get(b'filesremoved') if rawindices is None: