Mercurial > public > mercurial-scm > hg
diff 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 |
line wrap: on
line diff
--- a/hgext/record.py Wed Mar 02 21:36:14 2016 +0000 +++ b/hgext/record.py Wed Mar 02 21:38:32 2016 +0000 @@ -6,10 +6,15 @@ # GNU General Public License version 2 or any later version. '''commands to interactively select changes for commit/qrefresh''' +from __future__ import absolute_import +from mercurial import ( + cmdutil, + commands, + error, + extensions, +) from mercurial.i18n import _ -from mercurial import cmdutil, commands, extensions -from mercurial import error cmdtable = {} command = cmdutil.command(cmdtable)