Mercurial > hg
changeset 25952:f0ad094db832
hbisect: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 19:22:11 -0700 |
parents | 69751804f2f5 |
children | d15b279ddade |
files | mercurial/hbisect.py |
diffstat | 1 files changed, 12 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hbisect.py Sat Aug 08 19:18:23 2015 -0700 +++ b/mercurial/hbisect.py Sat Aug 08 19:22:11 2015 -0700 @@ -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.