Submitter | phabricator |
---|---|
Date | March 3, 2019, 9:34 a.m. |
Message ID | <fb4c222256abc8d667e8d19cdb8135a1@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39019/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1762,7 +1762,7 @@ wanted = set() copies = [] minrev, maxrev = min(revs), max(revs) - def filerevgen(filelog, last): + def filerevs(filelog, last): """ Only files, no patterns. Check the history of each file. @@ -1825,7 +1825,7 @@ ancestors = {filelog.linkrev(last)} # iterate from latest to oldest revision - for rev, flparentlinkrevs, copied in filerevgen(filelog, last): + for rev, flparentlinkrevs, copied in filerevs(filelog, last): if not follow: if rev > maxrev: continue