##// END OF EJS Templates
py3: make hgext/hisedit.py use absolute_import
Pulkit Goyal -
r29126:7dd5d19c default
parent child Browse files
Show More
@@ -169,30 +169,34 b' the drop to be implicit for missing comm'
169
169
170 """
170 """
171
171
172 import pickle
172 from __future__ import absolute_import
173
173 import errno
174 import errno
174 import os
175 import os
176 import pickle
175 import sys
177 import sys
176
178 from mercurial import (
177 from mercurial import bundle2
179 bundle2,
178 from mercurial import cmdutil
180 cmdutil,
179 from mercurial import discovery
181 context,
180 from mercurial import error
182 copies,
181 from mercurial import copies
183 destutil,
182 from mercurial import context
184 discovery,
183 from mercurial import destutil
185 error,
184 from mercurial import exchange
186 exchange,
185 from mercurial import extensions
187 extensions,
186 from mercurial import hg
188 hg,
187 from mercurial import node
189 lock,
188 from mercurial import repair
190 merge as mergemod,
189 from mercurial import scmutil
191 node,
190 from mercurial import util
192 obsolete,
191 from mercurial import obsolete
193 repair,
192 from mercurial import merge as mergemod
194 scmutil,
193 from mercurial.lock import release
195 util,
196 )
194 from mercurial.i18n import _
197 from mercurial.i18n import _
195
198
199 release = lock.release
196 cmdtable = {}
200 cmdtable = {}
197 command = cmdutil.command(cmdtable)
201 command = cmdutil.command(cmdtable)
198
202
@@ -10,7 +10,6 b''
10 hgext/hgcia.py not using absolute_import
10 hgext/hgcia.py not using absolute_import
11 hgext/highlight/__init__.py not using absolute_import
11 hgext/highlight/__init__.py not using absolute_import
12 hgext/highlight/highlight.py not using absolute_import
12 hgext/highlight/highlight.py not using absolute_import
13 hgext/histedit.py not using absolute_import
14 hgext/largefiles/__init__.py not using absolute_import
13 hgext/largefiles/__init__.py not using absolute_import
15 hgext/largefiles/basestore.py not using absolute_import
14 hgext/largefiles/basestore.py not using absolute_import
16 hgext/largefiles/lfcommands.py not using absolute_import
15 hgext/largefiles/lfcommands.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now