comparison hgext/histedit.py @ 43089:c59eb1560c44

py3: manually import getattr where it is needed The march continues. Differential Revision: https://phab.mercurial-scm.org/D7009
author Gregory Szorc <gregory.szorc@gmail.com>
date Sun, 06 Oct 2019 16:55:18 -0400
parents eef9a2d67051
children 649d3ac37a12
comparison
equal deleted inserted replaced
43088:0d612db7047c 43089:c59eb1560c44
204 import locale 204 import locale
205 import os 205 import os
206 import struct 206 import struct
207 207
208 from mercurial.i18n import _ 208 from mercurial.i18n import _
209 from mercurial.pycompat import open 209 from mercurial.pycompat import (
210 getattr,
211 open,
212 )
210 from mercurial import ( 213 from mercurial import (
211 bundle2, 214 bundle2,
212 cmdutil, 215 cmdutil,
213 context, 216 context,
214 copies, 217 copies,