Mercurial > hg
diff hgext/convert/cvs.py @ 48914:417a1691a273
convert: remove pycompat.iteritems()
Differential Revision: https://phab.mercurial-scm.org/D12319
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 01 Mar 2022 20:44:59 -0800 |
parents | 6000f5b25c9b |
children | 9282930f8b52 |
line wrap: on
line diff
--- a/hgext/convert/cvs.py Thu Mar 03 18:28:30 2022 -0800 +++ b/hgext/convert/cvs.py Tue Mar 01 20:44:59 2022 -0800 @@ -18,7 +18,6 @@ from mercurial import ( encoding, error, - pycompat, util, ) from mercurial.utils import ( @@ -316,7 +315,7 @@ if full: raise error.Abort(_(b"convert from cvs does not support --full")) self._parse() - return sorted(pycompat.iteritems(self.files[rev])), {}, set() + return sorted(self.files[rev].items()), {}, set() def getcommit(self, rev): self._parse()