changeset 4810 | 03690f8d2b0a |
parent 4743 | 92e3db149d7d |
child 4894 | f9743b13de6d |
child 4957 | e8302f760a54 |
--- a/hgext3rd/topic/compat.py Tue Aug 06 11:33:53 2019 +0200 +++ b/hgext3rd/topic/compat.py Tue Aug 06 11:34:31 2019 +0200 @@ -30,5 +30,7 @@ def branchmapitems(branchmap): return branchmap.items() else: + # py3-transform: off def branchmapitems(branchmap): return branchmap.iteritems() + # py3-transform: on