# HG changeset patch # User Gregory Szorc # Date 2015-08-09 02:45:45 # Node ID e6b56b2c1f26aedbe3aafe4bee02698656844444 # Parent d740df4e96cf425f0028f8ab38eac214ee975ad2 peer: use absolute_import diff --git a/mercurial/peer.py b/mercurial/peer.py --- a/mercurial/peer.py +++ b/mercurial/peer.py @@ -6,9 +6,13 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -from i18n import _ -import error -import util +from __future__ import absolute_import + +from .i18n import _ +from . import ( + error, + util, +) # abstract batching support