##// END OF EJS Templates
record: use absolute_import
timeless -
r28381:44ffbb2a default
parent child Browse files
Show More
@@ -6,10 +6,15 b''
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 '''commands to interactively select changes for commit/qrefresh'''
9 from __future__ import absolute_import
9 10
11 from mercurial import (
12 cmdutil,
13 commands,
14 error,
15 extensions,
16 )
10 17 from mercurial.i18n import _
11 from mercurial import cmdutil, commands, extensions
12 from mercurial import error
13 18
14 19 cmdtable = {}
15 20 command = cmdutil.command(cmdtable)
@@ -58,7 +58,6 b''
58 58 hgext/patchbomb.py not using absolute_import
59 59 hgext/purge.py not using absolute_import
60 60 hgext/rebase.py not using absolute_import
61 hgext/record.py not using absolute_import
62 61 hgext/share.py not using absolute_import
63 62 hgext/transplant.py not using absolute_import
64 63 hgext/win32mbcs.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now