changelog: use absolute_import

This commit is contained in:
Gregory Szorc 2015-08-08 00:26:49 -07:00
parent acca109d80
commit 68dd6a9cac

View File

@ -5,9 +5,21 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from node import bin, hex, nullid
from i18n import _
import util, error, revlog, encoding
from __future__ import absolute_import
from .i18n import _
from .node import (
bin,
hex,
nullid,
)
from . import (
encoding,
error,
revlog,
util,
)
_defaultextra = {'branch': 'default'}