Submitter | phabricator |
---|---|
Date | Oct. 16, 2017, 9:17 a.m. |
Message ID | <f00dbc348b51b291e6a483b21549c356@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/24966/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/dagutil.py b/mercurial/dagutil.py --- a/mercurial/dagutil.py +++ b/mercurial/dagutil.py @@ -148,7 +148,7 @@ if (r is not None and r != nullrev and r not in rl.filteredrevs)] - return map(self._internalize, ids) + return [self._internalize(i) for i in ids] class revlogdag(revlogbaseddag):