Submitter | phabricator |
---|---|
Date | Dec. 29, 2017, 12:48 a.m. |
Message ID | <differential-rev-PHID-DREV-kgcu5de5lkiqfamiv4tr-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26488/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -1108,7 +1108,7 @@ hist[f] = curr del pcache[f] - return zip(hist[base][0], hist[base][1].splitlines(True)) + return pycompat.ziplist(hist[base][0], hist[base][1].splitlines(True)) def ancestors(self, followfirst=False): visit = {}