# HG changeset patch # User Gregory Szorc # Date 2015-08-09 02:22:11 # Node ID f0ad094db832584d4aee682b625b7e660eb14544 # Parent 69751804f2f555438f3e0d4b25185f349f1a79e0 hbisect: use absolute_import diff --git a/mercurial/hbisect.py b/mercurial/hbisect.py --- a/mercurial/hbisect.py +++ b/mercurial/hbisect.py @@ -8,12 +8,20 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. +from __future__ import absolute_import + import collections import os -import error -from i18n import _ -from node import short, hex -import util + +from .i18n import _ +from .node import ( + hex, + short, +) +from . import ( + error, + util, +) def bisect(changelog, state): """find the next node (if any) for testing during a bisect search.