comparison hgext/record.py @ 28381:44ffbb2a4f59

record: use absolute_import
author timeless <timeless@mozdev.org>
date Wed, 02 Mar 2016 21:38:32 +0000
parents 56b2bcea2529
children d001d6d27570
comparison
equal deleted inserted replaced
28380:ad266834251b 28381:44ffbb2a4f59
4 # 4 #
5 # This software may be used and distributed according to the terms of the 5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version. 6 # GNU General Public License version 2 or any later version.
7 7
8 '''commands to interactively select changes for commit/qrefresh''' 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 from mercurial.i18n import _ 17 from mercurial.i18n import _
11 from mercurial import cmdutil, commands, extensions
12 from mercurial import error
13 18
14 cmdtable = {} 19 cmdtable = {}
15 command = cmdutil.command(cmdtable) 20 command = cmdutil.command(cmdtable)
16 # Note for extension authors: ONLY specify testedwith = 'internal' for 21 # Note for extension authors: ONLY specify testedwith = 'internal' for
17 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 22 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should